scss integration

This commit is contained in:
Ray
2017-08-01 10:02:51 +01:00
parent 91c7850df0
commit 22c4a4926b
14 changed files with 183 additions and 199 deletions

View File

@@ -1,9 +1,6 @@
import React, {Component} from 'react';
import Header from '../../components/Header'
import {Route, Switch} from 'react-router-dom'
import './style.css';
import Home from '../Home';
import NotFound from '../NotFound';
@@ -11,8 +8,6 @@ export default class App extends Component {
render() {
return (
<div className="App">
<Header />
<div className="container mt-4">
<Switch>
<Route exact path="/" component={Home}/>