|
@@ -1,7 +1,9 @@
|
|
|
import React from "react";
|
|
|
import { Switch, Route } from "react-router-dom";
|
|
|
+
|
|
|
import App from "./container/App";
|
|
|
import Header from './components/Header'
|
|
|
+
|
|
|
export default () => (
|
|
|
<div>
|
|
|
<Header/>
|
|
@@ -9,5 +11,4 @@ export default () => (
|
|
|
<Route path="/" exact component={App} />
|
|
|
</Switch>
|
|
|
</div>
|
|
|
-
|
|
|
);
|