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

About

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