diff --git a/src/components/App.js b/src/components/App.js index 859b2e1e9..fee37c74d 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -16,17 +16,26 @@ function Home() { ); } -{/* write an component here */} - +// Define the About component here (only once!) +function About() { + return ( +
+

About

+
+ ); +} function App() { return ( -
+
{/* It's good practice to have a main div with a class or id */} - {/* add the component here */} - {/* add your component here */} + {/* Add the component here */} + + {/* Add your component here */} +
); } -export default App; +// This should be at the very end of the file, only once. +export default App; \ No newline at end of file