Initial commit

This commit is contained in:
Ahmed Al-Taiar
2024-08-07 22:31:59 -04:00
commit 746a443ccd
50 changed files with 22362 additions and 0 deletions

20
web/src/Routes.tsx Normal file
View File

@ -0,0 +1,20 @@
// In this file, all Page components from 'src/pages` are auto-imported. Nested
// directories are supported, and should be uppercase. Each subdirectory will be
// prepended onto the component name.
//
// Examples:
//
// 'src/pages/HomePage/HomePage.js' -> HomePage
// 'src/pages/Admin/BooksPage/BooksPage.js' -> AdminBooksPage
import { Router, Route } from '@redwoodjs/router'
const Routes = () => {
return (
<Router>
<Route notfound page={NotFoundPage} />
</Router>
)
}
export default Routes