forked from macobo/heroku-cra-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
34 lines (31 loc) · 730 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React from 'react';
import { RegisterForm } from './components/registerForm'
import './App.css'
import {
Router,
Switch,
Route,
} from "react-router-dom"
import LoginPage from './components/LoginPage'
import HomePage from './components/HomePage'
import SmsConfirmPage from './components/SmsConfirmPage'
import history from './history'
function App() {
return (
<Router history={history}>
<div className="App">
<Switch>
<Route path="/post/sms"><SmsConfirmPage /></Route>
<Route path="/login">
<LoginPage />
</Route>
<Route path="/register">
<RegisterForm />
</Route>
<Route path="/"><HomePage /></Route>
</Switch>
</div>
</Router>
);
}
export default App;