How to define a functional component?
import React from 'react'; function App() { return <Headline />; } function Headline() { const greeting = 'Hello Function Component!'; return <h1>{greeting}</h1>; } export default App;
September 2nd, 2019
A very simple example for functional components in React.