App.js 1.89 KB
Newer Older
1
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
한규민's avatar
push    
한규민 committed
2
import { AuthProvider } from "./context/auth_context";
Jiwon Yoon's avatar
Jiwon Yoon committed
3
4
5
import Header from "./components/Header";
import SubNav from "./components/Navs/SubNav";
import MainNav from "./components/Navs/MainNav";
6
7
8
9
10
11
12
import HomePage from "./pages/HomePage";
import LoginPage from "./pages/LoginPage";
import SignupPage from "./pages/SignupPage";
import MovieListPage from "./pages/MovieListPage";
import MoviePage from "./pages/MoviePage";
import TheaterPage from "./pages/TheaterPage";
import MyPage from "./pages/MyPage";
Kim, Subin's avatar
Kim, Subin committed
13
import AdminPage from "./pages/AdminPage/AdminPage";
Jiwon Yoon's avatar
Jiwon Yoon committed
14
import TicketingPage from "./pages/TicketingPage";
Jiwon Yoon's avatar
Jiwon Yoon committed
15
import TicketingSeatPage from './pages/TicketingSeatPage'
Kim, Subin's avatar
수빈    
Kim, Subin committed
16
import SearchPage from "./pages/SearchPage";
Kim, Subin's avatar
Kim, Subin committed
17
18
import Payment from "./pages/PaymentPage/PaymentPage";
import PaymentCompletePage from "./pages/PaymentCompletePage";
Jiwon Yoon's avatar
Jiwon Yoon committed
19

한규민's avatar
다시    
한규민 committed
20
function App() {
한규민's avatar
push    
한규민 committed
21

Jiwon Yoon's avatar
Jiwon Yoon committed
22
  return (
Kim, Subin's avatar
Kim, Subin committed
23
24
25
26
27
    <AuthProvider>
      <Router>
        <Switch>
          <Route path="/admin" component={AdminPage} />
          <div style={{ backgroundColor: "black" }}>
Kim, Subin's avatar
Kim, Subin committed
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
            <SubNav />
            <Header />
            <MainNav />
            <Switch>
              <Route exact path="/" component={HomePage} />
              <Route path="/login" component={LoginPage} />
              <Route path="/signup" component={SignupPage} />
              <Route path="/movielist" component={MovieListPage} />
              <Route path="/movie/:movieId" component={MoviePage} />
              <Route path="/mypage" component={MyPage} />
              <Route path="/ticket/seat" component={TicketingSeatPage} />
              <Route path="/ticket" component={TicketingPage} />
              <Route path="/payment" component={Payment} />
              <Route path="/search" component={SearchPage} />
            </Switch>
Kim, Subin's avatar
Kim, Subin committed
43
44
45
46
          </div>
        </Switch>
      </Router>
    </AuthProvider>
Jiwon Yoon's avatar
Jiwon Yoon committed
47
48
49
  );
}

Kim, Subin's avatar
Kim, Subin committed
50
export default App;