App.js 1.26 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
6
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import "./App.css";
import HomeGuestPage from "./pages/HomeGuestPage";
import HomeUserPage from "./pages/HomeUserPage";
import ProfilePage from "./pages/ProfilePage";
import RoomPage from "./pages/RoomPage";
이재연's avatar
이재연 committed
7
import InfoUpdatePage from "./pages/InfoUpdatePage";
권병윤's avatar
as    
권병윤 committed
8
import InvitePage from "./pages/InvitePage";
Kim, Chaerin's avatar
Kim, Chaerin committed
9
10
11
12
13
14
15
16

function App() {
  return (
    <Router basename={process.env.PUBLIC_URL}>
      {/* <AuthProvider> */}
      <Switch>
        <Route exact path="/" component={HomeGuestPage} />
        <Route exact path="/user" component={HomeUserPage} />
이재연's avatar
이재연 committed
17
        <Route path="/profile/:id/update" component={InfoUpdatePage} />
Kim, Chaerin's avatar
Kim, Chaerin committed
18
        <Route path="/profile/:id" component={ProfilePage} />
이재연's avatar
aaa    
이재연 committed
19
20
21
22
23
24
25
26
27
28
29
30
31
        <Route path="/room/:roomId/:channelId" component={RoomPage}>
        {/* <Switch>
          <Route path={"/room/:roomId/meeting"}>
            <></>
          </Route>
          <Route path={"/room/:roomId/normal"}>
            <></>
          </Route>
          <Route path={"/room/:roomId/notice"}>
            <></>
          </Route>
        </Switch> */}
        </Route>
권병윤's avatar
as    
권병윤 committed
32
        <Route path="/room/Invite" component={InvitePage} />
Kim, Chaerin's avatar
Kim, Chaerin committed
33
34
35
36
37
38
39
      </Switch>
      {/* </AuthProvider> */}
    </Router>
  );
}

export default App;