0% found this document useful (0 votes)
2 views

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
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

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
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