import React from 'react'; function App() { const hillo = 'Hi Functional Component!'; return <h1>{hillo}</h1>; } export default App;