App.tsx 570 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
import React from "react";
Jiwon Yoon's avatar
Jiwon Yoon committed
2
3
4
5
import HomePage from "./Pages/HomePage";
// import LoginPage from "./Pages/LoginPage";
// import SignUpPage from "./Pages/SignUpPage";
import { BrowserRouter, Route, Routes } from "react-router-dom";
Yoon, Daeki's avatar
Yoon, Daeki committed
6
7
8
9
import "tailwindcss/tailwind.css";

export const App = () => {
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
10
11
12
13
14
15
16
17
    <BrowserRouter>
      <Routes>
        <Route path="/" element={<HomePage />}>
          {/* <Route path="login" element={<LoginPage />} />
          <Route path="signup" element={<SignUpPage />} /> */}
        </Route>
      </Routes>
    </BrowserRouter>
Yoon, Daeki's avatar
Yoon, Daeki committed
18
19
  );
};