Modified by www.SourceFiles.app

This commit is contained in:
2026-08-07 04:15:24 +00:00
parent df9fa4992a
commit 61abbe2de4
+6
View File
@@ -0,0 +1,6 @@
import { createFileRoute, Outlet } from "@tanstack/react-router";
// Layout route for /classes; list is in classes.index.tsx, detail in classes.$id.tsx.
export const Route = createFileRoute("/_authenticated/classes")({
component: () => <Outlet />,
});