migrated to nextjs 13 app dir
This commit is contained in:
13
src/app/layout.tsx
Normal file
13
src/app/layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user