Files
KAFM-Project/app/layout.tsx

29 lines
456 B
TypeScript

import "./globals.css";
import SessionWrapper from "./sessionWrapper";
import { Inter } from "next/font/google";
const inter = Inter({
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={inter.className}
>
<body>
<SessionWrapper>
{children}
</SessionWrapper>
</body>
</html>
);
}