14 lines
332 B
TypeScript
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>
|
|
);
|
|
}
|