diff --git a/src/components/App/index.js b/src/components/App/index.js index 291bf45..65635c2 100644 --- a/src/components/App/index.js +++ b/src/components/App/index.js @@ -1,24 +1,31 @@ import React from "react"; import { BrowserRouter as Router, Switch, Route } from "react-router-dom"; import Home from "../Home"; +import AboutUs from "../AboutUs"; +import Contact from "../Contact"; import NotFound from "../404NotFound"; -import GlobalStyle from '../Styles' - +import GlobalStyle from "../Styles"; export const App = (props) => { return ( <> - - - - - - - - - - - + + + + + + + + + + + + + + + + + ); };