App.js 1.48 KB
Newer Older
이재연's avatar
병합    
이재연 committed
1
import './App.css';
Jiwon Yoon's avatar
22    
Jiwon Yoon committed
2
3
4
5
6
7
8
import { BrowserRouter as Router, Route, Redirect, Switch } from 'react-router-dom';
import Home from './Pages/Home';
import Login from './Pages/Login';
import Signup from './Pages/Signup';
import Product from "./Pages/Product";
import ProductsList from "./Pages/ProductsList";
import Admin from './Pages/Admin';
Jiwon Yoon's avatar
Jiwon Yoon committed
9
import ProductRegist from './Pages/ProductRegist';
Jiwon Yoon's avatar
22    
Jiwon Yoon committed
10
11
12
13
14
import ShoppingCart from './Pages/ShoppingCart';
import Payment from './Pages/Payment';
import Account from './Pages/Account';
import MainNav from './Components/MainNav';
import SubNav from './Components/SubNav';
이재연's avatar
이재연 committed
15

이재연's avatar
병합    
이재연 committed
16
17

function App() {
Jiwon Yoon's avatar
22    
Jiwon Yoon committed
18
19
20
21
22
23
24
25
26
27
28
29
30
31


  return (
    <div>
      <MainNav />
      <SubNav />
      <Router>
        <Switch>
          <Route exact path="/" component={Home} />
          <Route path="/login" component={Login} />
          <Route path="/signup" component={Signup} />
          <Route path="/product" component={Product} />
          <Route path="/productslist" component={ProductsList} />
          <Route path="/admin" component={Admin} />
Jiwon Yoon's avatar
Jiwon Yoon committed
32
          <Route path="/regist" component={ProductRegist} />
Jiwon Yoon's avatar
22    
Jiwon Yoon committed
33
34
35
36
37
38
39
40
41
          <Route path="/shoppingcart" component={ShoppingCart} />
          <Route path="/payment" component={Payment} />
          <Route path="/account" component={Account} />
          <Route path='/kakao' component={() => { window.location.href = 'https://compmath.korea.ac.kr'; return null; }} />
          <Redirect path="/" to="/" />
        </Switch>
      </Router>
    </div>
  )
이재연's avatar
이재연 committed
42
43


이재연's avatar
병합    
이재연 committed
44
45
46
}

export default App;