can you add another functional component in react code example
Example: create functional component react
import React from 'react'; const App = () => { const greeting = 'Hello Function Component!'; return ;}; const Headline = ({ value }) => {value}
; export default App;