react component functional code example
Example 1: functional component react
function Welcome(props) {
return Hello, {props.name}
;
}
function App() {
return (
);
}
ReactDOM.render(
,
document.getElementById('root')
);
Example 2: react functional components
const component = () => {
console.log("This is a functional Component");
}
Example 3: create functional component react
import React from 'react'; const App = () => { const greeting = 'Hello Function Component!'; return ;}; const Headline = ({ value }) => {value}
; export default App;