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

About

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