// 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, Private } from '@redwoodjs/router' const Routes = () => { return ( {/* Ownership enforced routes */} {/* End ownership enforced routes */} {/* GENERATED ROUTES BELOW, probably going to clean these up and delete most of them, but the CRUD functionality is useful for now */} {/* All private by default for safety and because the routes that are left after clean up will probably be admin pages */} ) } export default Routes