// src/App.jsx function Footer() { return ( ); } function App() { return (

My First React App

If you can see this, JSX is rendering correctly.

); } export default App; /* Notes: - Footer is just another function that returns JSX — exactly the same shape as App itself. -