Decided on a style for the contact page (finally)

This commit is contained in:
2018-06-05 12:41:12 +10:00
parent 3968075394
commit 3753fcd0e1
9 changed files with 1991 additions and 10 deletions

View File

@@ -29,6 +29,7 @@ import { HashRouter, Route, Switch } from 'react-router-dom';
//Pages
import Homepage from './page/home/Homepage';
import AboutPage from './page/about/AboutPage';
import ContactPage from './page/contact/ContactPage';
class App extends React.Component {
@@ -46,6 +47,7 @@ class App extends React.Component {
<main className="o-main">
<Switch>
<Route exact path="/" component={ Homepage } />
<Route exact path="/about" component={ AboutPage } />
<Route exact path="/contact" component={ ContactPage } />
</Switch>
</main>