mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 19:16:41 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
4636279a40
commit
41e1fb1c22
2 changed files with 47 additions and 7 deletions
11
src/routes/admin.tsx
Normal file
11
src/routes/admin.tsx
Normal 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 />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue