mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
15 lines
229 B
TypeScript
15 lines
229 B
TypeScript
import Navbar from "@/components/Navbar";
|
|
|
|
export default function Layout({
|
|
children, // will be a page or nested layout
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
{children}
|
|
</>
|
|
);
|
|
}
|