Files
cstb-next/src/app/layout.tsx

18 lines
282 B
TypeScript
Raw Normal View History

2025-03-14 19:25:11 +08:00
// "use client"
2024-11-11 10:04:00 +08:00
import "./globals.css"
import Providers from "./providers"
2024-09-20 23:15:42 +08:00
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
2025-03-14 19:25:11 +08:00
<body>
<Providers>{children}</Providers>
</body>
2024-09-20 23:15:42 +08:00
</html>
)
}