mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 23:16:42 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
a32c05a679
commit
35ca1f80f2
7 changed files with 1302 additions and 0 deletions
12
src/routes/painel.skills.tsx
Normal file
12
src/routes/painel.skills.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
"use client";
|
||||
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { Outlet } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/painel/skills")({
|
||||
component: SkillsLayout,
|
||||
});
|
||||
|
||||
function SkillsLayout() {
|
||||
return <Outlet />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue