import React from "react"; import { BrowserRouter, Route, Routes, Link, Outlet} from "react-router-dom"; import "tailwindcss/tailwind.css"; 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"; export const App = () => { return ( } /> } /> }> } /> } /> ); };