App.js 864 Bytes
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";
Kim, Chaerin's avatar
Kim, Chaerin committed
8
9
10
11
12
13
14
15

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
16
        <Route path="/profile/:id/update" component={InfoUpdatePage} />
Kim, Chaerin's avatar
Kim, Chaerin committed
17
18
19
20
21
22
23
24
25
        <Route path="/profile/:id" component={ProfilePage} />
        <Route path="/Room/:id/:channel" component={RoomPage} />
      </Switch>
      {/* </AuthProvider> */}
    </Router>
  );
}

export default App;