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

24 lines
413 B
TypeScript
Raw Normal View History

"use client"
// export const metadata = {
// title: "CS工具箱",
// description: "Generated by Next.js",
// icons: ["/favicon.ico"],
// }
2024-09-20 23:15:42 +08:00
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">
<body>
<Providers>{children}</Providers>
</body>
2024-09-20 23:15:42 +08:00
</html>
)
}