mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-40): use MainDrawer component in root layout
This commit is contained in:
+3
-2
@@ -1,6 +1,7 @@
|
||||
import type { Metadata, Viewport } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
import '@/app/globals.css';
|
||||
import MainDrawer from '@/components/MainDrawer';
|
||||
|
||||
const inter = Inter({
|
||||
variable: '--font-inter',
|
||||
@@ -26,7 +27,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang='en'>
|
||||
<body className={`${inter.variable} antialiased font-inter`}>
|
||||
{children}
|
||||
<MainDrawer>{children}</MainDrawer>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user