mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import { createFileRoute, Outlet } from "@tanstack/react-router"
|
|
|
|
export const Route = createFileRoute("/_layout/(auth)/_auth")({
|
|
component: () => (
|
|
<main className="h-full">
|
|
<Outlet />
|
|
</main>
|
|
),
|
|
})
|