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

20 lines
312 B
TypeScript
Raw Normal View History

2024-09-20 23:15:42 +08:00
export const metadata = {
title: "CS工具箱",
description: "Generated by Next.js",
icons: ["/favicon.ico"],
};
import "./globals.css";
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}