mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-07-28 02:34:28 +08:00
13 lines
324 B
TypeScript
13 lines
324 B
TypeScript
import { Provider } from '@/components/provider';
|
|
import './global.css';
|
|
|
|
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
return (
|
|
<html lang="zh-CN" suppressHydrationWarning>
|
|
<body className="flex flex-col min-h-screen">
|
|
<Provider>{children}</Provider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|