mirror of
https://github.com/neosubhamoy/neodlp-extension.git
synced 2025-12-20 01:49:34 +05:30
13 lines
339 B
TypeScript
13 lines
339 B
TypeScript
import Footer from "@/components/footer";
|
|
import Header from "@/components/header";
|
|
import { Outlet } from "react-router-dom";
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<div className="flex flex-col min-w-[270px] p-4 space-y-4">
|
|
<Header />
|
|
<Outlet />
|
|
<Footer />
|
|
</div>
|
|
)
|
|
} |