From 9fef983266020240e508dd46f277c1f0a7eb9a44 Mon Sep 17 00:00:00 2001 From: Camerin Figueroa Date: Mon, 20 Sep 2021 12:46:59 -0400 Subject: [PATCH] Added about route --- src/components/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/App.js b/src/components/App.js index 4be5ae3..d30ba16 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -3,6 +3,7 @@ import { BrowserRouter, Route, Switch } from 'react-router-dom'; import Navigation from './Navigation'; import Home from './Home'; import Github from './Github'; +import About from './About'; const App = (props) => { return ( @@ -12,6 +13,7 @@ const App = (props) => { +