src/App.tsx
function Header() {
return (
<>
<h1>Header!</h1>
</>
);
}
function Main() { ----- ➊
return (
<>
<h1>Hello, Function Component!</h1>
</>
);
}
function Footer() { ----- ➋
return (
<>
<h1>Footer!</h1>
</>
);
}
export default function App() {
return (