0% found this document useful (0 votes)
9 views1 page

1 UseEffect Basics

The document contains a simple React functional component named 'Starter'. It returns a div element with the text 'Starter useEffect'. The component is then exported for use in other parts of the application.

Uploaded by

KundiLokesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

1 UseEffect Basics

The document contains a simple React functional component named 'Starter'. It returns a div element with the text 'Starter useEffect'. The component is then exported for use in other parts of the application.

Uploaded by

KundiLokesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

import React from "react";

const Starter = () => {


return <div>Starter useEffect</div>;
};

export default Starter;

You might also like