Modified by www.SourceFiles.app

This commit is contained in:
2026-08-07 04:15:38 +00:00
parent 4af7d71e18
commit d994912f1d
+7
View File
@@ -0,0 +1,7 @@
import { createFileRoute, Outlet } from "@tanstack/react-router";
// Layout route for /students. The list lives in students.index.tsx; the child
// routes (students.new, students.$id) render here through the Outlet.
export const Route = createFileRoute("/_authenticated/students")({
component: () => <Outlet />,
});