dflzm
Version:
x
25 lines (21 loc) • 500 B
JSX
import React from 'react'
import {
Route,
Switch,
Redirect,
} from 'react-router-dom'
import NotFound from './container/NotFound'
import Auth from './component/auth'
import Login from './component/login'
import './style.scss'
const App = () => (
<Switch>
<Route exact path="/">
<Redirect to="/login" push />
</Route>
<Route path="/auth" component={Auth} />
<Route path="/login" component={Login} />
<Route component={NotFound} />
</Switch>
)
export default App