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

{props.text}

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