mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-24 14:27:56 -05:00
19 lines
492 B
TypeScript
19 lines
492 B
TypeScript
import type { ReactNode } from 'react'
|
|
import { Inter } from 'next/font/google'
|
|
import { RootProvider } from 'fumadocs-ui/provider'
|
|
import './global.css'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
<body className="flex flex-col min-h-screen">
|
|
<RootProvider>{children}</RootProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|