Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-23 21:56:56 +00:00
parent 4636279a40
commit 41e1fb1c22
2 changed files with 47 additions and 7 deletions

11
src/routes/admin.tsx Normal file
View file

@ -0,0 +1,11 @@
"use client";
import { Outlet, createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/admin")({
component: AdminLayout,
});
function AdminLayout() {
return <Outlet />;
}