diff --git a/src/components/App.js b/src/components/App.js index 13b1299..50161f3 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -1,18 +1,24 @@ import React from 'react'; -import { Router, Route } from 'react-router-dom'; +import { BrowserRouter, Route, Switch } from 'react-router-dom'; import Navigation from './Navigation'; import history from '../history'; import Home from './Home'; +import Github from './Github'; -function App() { - return ( -
- - - - -
- ); +const App = (props) => { + return ( +
+ +
+ + + + + +
+
+
+ ); } export default App;