react functional components e3xamples code example
Example 1: create functional component react
import React from 'react'; const App = () => { const greeting = 'Hello Function Component!'; return ;}; const Headline = ({ value }) => {value}
; export default App;
Example 2: functional components react
function Comment(props) {
return (
{props.author.name}
{props.text}
{formatDate(props.date)}
);
}