import React from "react"; import { BrowserRouter, Route, Routes } from "react-router-dom"; import "tailwindcss/tailwind.css"; import { IntoPost } from "./post/intopost"; import { Login, Profile, RequireAuth, Signup } from "./auth"; import { Header, Body } from "./home"; import { Board } from "./board"; import Posting from "./post/posting"; import { Layout } from "./commons"; export const App = () => { return ( }> } /> } /> }> } /> } /> } /> } /> } /> ); };