diff options
Diffstat (limited to 'middleware/src/app/layout.tsx')
| -rw-r--r-- | middleware/src/app/layout.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/middleware/src/app/layout.tsx b/middleware/src/app/layout.tsx new file mode 100644 index 0000000..a9eb425 --- /dev/null +++ b/middleware/src/app/layout.tsx @@ -0,0 +1,10 @@ +import type { ReactNode } from 'react' +import './globals.css'; + +export default function RootLayout({ children }: { children: ReactNode }) { + return ( + <html lang="en"> + <body suppressHydrationWarning>{children}</body> + </html> + ) +} |
