diff --git a/src/components/App.js b/src/components/App.js index 859b2e1e9..5fe2d9c6a 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -15,16 +15,20 @@ function Home() { ); } - -{/* write an component here */} - +function About() { + return ( +
+

About

+
+ ); +} function App() { return (
- {/* add the component here */} - {/* add your component here */} + +
); }