add footer

This commit is contained in:
cleverbeagle 2017-05-29 22:48:28 -05:00
parent b0270cc98b
commit bd78b8e4d7
8 changed files with 92 additions and 5 deletions

View file

@ -20,6 +20,9 @@ import RecoverPassword from '../../pages/RecoverPassword/RecoverPassword';
import ResetPassword from '../../pages/ResetPassword/ResetPassword';
import Profile from '../../pages/Profile/Profile';
import NotFound from '../../pages/NotFound/NotFound';
import Footer from '../../components/Footer/Footer';
import './App.scss';
const App = props => (
<Router>
@ -41,6 +44,7 @@ const App = props => (
<Route component={NotFound} />
</Switch>
</Grid>
<Footer />
</div> : ''}
</Router>
);

View file

@ -0,0 +1,3 @@
.App > .container {
margin-bottom: 20px;
}