2023-11-03 11:57:10 +03:00

14 lines
332 B
TypeScript

import './globals.css';
import FlowbiteContext from './context/FlowbiteContext';
import type { PropsWithChildren } from 'react';
export default function RootLayout({ children }: PropsWithChildren) {
return (
<html lang="en">
<body>
<FlowbiteContext>{children}</FlowbiteContext>
</body>
</html>
);
}