14 lines
368 B
TypeScript
14 lines
368 B
TypeScript
import '@assets/global.css';
|
|
|
|
import { Providers } from './providers';
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className="cursor-default select-none overflow-hidden font-sans antialiased">
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|