a bunch of aesthetics and also create user http requests

This commit is contained in:
Ava DeCroix
2023-04-29 16:15:28 -04:00
parent 692b46ec06
commit 6ad72baa5c
9 changed files with 1061 additions and 106 deletions

View File

@@ -1,6 +1,7 @@
import "./App.css";
import Login from "./components/Login";
import CreateAccount from "./components/CreateAccount";
import Menus from "./components/Menus";
import {
@@ -19,6 +20,7 @@ function App() {
<Routes>
<Route path='/' element={<Login/>}></Route>
<Route path='/CreateAccount' element={<CreateAccount/>}></Route>
<Route path='/Menus' element={<Menus/>}></Route>
</Routes>
</Router>
);