* refactor: align app layouts with route boundaries * fix: honor auth redirect search in auth layout
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import { createFileRoute, Outlet } from "@tanstack/react-router";
|
|
|
|
export const Route = createFileRoute("/_project/p/$projectId/audit")({
|
|
component: SiteAuditLayout,
|
|
});
|
|
|
|
function SiteAuditLayout() {
|
|
return <Outlet />;
|
|
}
|