App.tsx 704 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
import React from "react";
백승민's avatar
theme1    
백승민 committed
2
import { BrowserRouter, Route, Routes, Link, Outlet} from "react-router-dom";
Yoon, Daeki's avatar
Yoon, Daeki committed
3
import "tailwindcss/tailwind.css";
Lee Soobeom's avatar
Lee Soobeom committed
4
5
6
7
8
import Header from "./Pages/header";
import Body from "./Pages/body";
import Board from "./Pages/board";
import Login from "./Pages/login";
import Signup from "./Pages/signup";
Yoon, Daeki's avatar
Yoon, Daeki committed
9
10
11

export const App = () => {
  return (
백승민's avatar
theme1    
백승민 committed
12
13
14
    <BrowserRouter>
      <Routes>
        <Route path="/login" element={<Login />} />
Lee Soobeom's avatar
Lee Soobeom committed
15
        <Route path="/signup" element={<Signup />} />
백승민's avatar
theme1    
백승민 committed
16
17
18
19
20
21
        <Route path="/" element={<Header />}>
          <Route index element={<Body />} />
          <Route path="/board" element={<Board />} />
        </Route>
      </Routes>
    </BrowserRouter>
Yoon, Daeki's avatar
Yoon, Daeki committed
22
23
  );
};