Skip to main content

React Component as Function

Create a basic Function Component

function HomePage(){
// Returning the HTML-DOM
return (
<div>
<p>Hello World</p>
</div>
)
}

// Export the function so that we can import it in App.js
export { HomePage }

Usage

// Import the function
import { HomePage } from './components/homepage/homepage';
// Use it as
<HomePage />