This commit is contained in:
Eduard Gert
2026-05-07 09:57:14 +02:00
parent 553be144b4
commit debb558aa3
22 changed files with 774 additions and 178 deletions

View File

@@ -0,0 +1,11 @@
import { Outlet } from "react-router-dom";
import { Header } from "@/layouts/Header.tsx";
export const AppLayout = () => {
return (
<div className={"flex h-full flex-col"}>
<Header />
<Outlet />
</div>
);
};