index.js 1.92 KB
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
import React from 'react';
import ReactDOM from 'react-dom';
Yoon, Daeki's avatar
reload    
Yoon, Daeki committed
3
import { BrowserRouter as Router, HashRouter, Route, Redirect, Switch } from 'react-router-dom';
Yoon, Daeki's avatar
Yoon, Daeki committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import * as serviceWorker from './serviceWorker';
import 'bootstrap';
import 'bootstrap/dist/css/bootstrap.css';
import axios from 'axios';
import { PrivateRoute } from './Components/PrivateRoute';

import Login from './Pages/LoginPage';
import Home from './Pages/HomePage';
import Signup from './Pages/SignupPage';
import Find from './Pages/FindPage';
import Change from './Pages/ChangePage';
import Apply from './Pages/ApplyPage';
import Check from './Pages/CheckPage';
import Notice from './Pages/NoticePage';
import ACheck from './Pages/ACheckPage';
import Write from './Pages/WritePage';
import Modify from './Pages/ModifyPage';

axios.defaults.validateStatus = function (status) {
  return status < 500; // default
}
Yoon, Daeki's avatar
Yoon, Daeki committed
25
26

ReactDOM.render(
Yoon, Daeki's avatar
reload    
Yoon, Daeki committed
27
  <HashRouter>
Yoon, Daeki's avatar
Yoon, Daeki committed
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
    <Switch>
      <PrivateRoute exact path="/" component={Home} />
      <Route path="/login" component={Login} />
      <Route path="/home" component={Home} />
      <Route path="/signup" component={Signup} />
      <Route path="/find" component={Find} />
      <Route path="/change" component={Change} />
      <Route path="/apply/:id" component={Apply} />
      <Route path="/check/:id" component={Check} />
      <Route path="/modify/:id" component={Modify} />
      <Route path="/write" component={Write} />
      <Route path="/notice" component={Notice} />
      <Route path="/acheck/:id" component={ACheck} />
      <Redirect path="/home" to="/" />
      <Redirect path="/change/:id" to="/change" />
      <Redirect path="/notice" to="/notice" />
    </Switch>
Yoon, Daeki's avatar
reload    
Yoon, Daeki committed
45
  </HashRouter>,
Yoon, Daeki's avatar
Yoon, Daeki committed
46
47
48
  document.getElementById('root')
);

Yoon, Daeki's avatar
Yoon, Daeki committed
49
50
51
52
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();