|
@@ -4,6 +4,7 @@ import { Switch, Route } from "react-router-dom";
|
|
import App from "./container/App";
|
|
import App from "./container/App";
|
|
import Header from './components/Header'
|
|
import Header from './components/Header'
|
|
import Form from './components/Auth/index'
|
|
import Form from './components/Auth/index'
|
|
|
|
+import RegistrForm from './components/Auth/registration'
|
|
|
|
|
|
export default () => (
|
|
export default () => (
|
|
<div>
|
|
<div>
|
|
@@ -11,6 +12,7 @@ export default () => (
|
|
<Switch>
|
|
<Switch>
|
|
<Route path="/" exact component={App} />
|
|
<Route path="/" exact component={App} />
|
|
<Route path="/auth" exact component={Form} />
|
|
<Route path="/auth" exact component={Form} />
|
|
|
|
+ <Route path="/registration" exact component={RegistrForm} />
|
|
|
|
|
|
</Switch>
|
|
</Switch>
|
|
</div>
|
|
</div>
|