December 2019
Intermediate to advanced
598 pages
12h 21m
English
We can create a basic Header component and reference it within our App component by carrying out the following steps:
import React from 'react';
export const Header = () => <div>header</div>;
Congratulations! We have implemented our first function-based React component!
The preceding component is actually an arrow function that is set to the Header variable.
Read now
Unlock full access