Files
smart-crop-ui/crop-x/src/app/layout.tsx

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>
)
}