diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index c449ca3..5c03d4b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -4,6 +4,7 @@ import { getSeed, getTrips, getNextTripId } from "./api"; import ItemsPage from "./pages/ItemsPage"; import TripChecklist from "./pages/TripChecklist"; import TripsPage from "./pages/TripsPage"; +import TagsPage from "./pages/TagsPage"; function NextTripRedirect({ trips }: { trips: any[] }) { const [nextTripId, setNextTripId] = React.useState(null); @@ -55,12 +56,17 @@ export default function App() { + + + + + + + ); +} \ No newline at end of file