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, Admin, ImgRewrite } from "./auth"; import { Header, Body } from "./home"; import { Board } from "./board"; import Posting from "./post/posting"; import { Layout } from "./commons"; import { EditPost } from "./post/editpost"; export const App = () => { return ( }> } /> } /> }> } /> } /> } /> } /> } /> } /> } /> } /> ); };