17 lines
325 B
TypeScript
17 lines
325 B
TypeScript
|
|
import '@/styles/globals.css'
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
{/* 布局 UI */}
|
|
{/* 将 children 放在您希望渲染页面或嵌套布局的位置 */}
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
} |