mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-13 12:19:54 +00:00
14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import { Outlet } from "react-router-dom";
|
|
import { Header } from "@/layouts/Header.tsx";
|
|
import { AutoUpdate } from "@/modules/auto-update/AutoUpdate.tsx";
|
|
|
|
export const AppLayout = () => {
|
|
return (
|
|
<div className={"relative flex h-full flex-col"}>
|
|
<Header />
|
|
<Outlet />
|
|
<AutoUpdate />
|
|
</div>
|
|
);
|
|
};
|