后台管理系统基础框架:侧边栏布局、9 个页面模块、共享类型和 API 客户端

This commit is contained in:
2569718930@qq.com
2026-05-18 20:10:08 +08:00
parent 2d1cb55151
commit 073d0efbb0
22 changed files with 1416 additions and 11 deletions
+5
View File
@@ -0,0 +1,5 @@
import { AdminShell } from "@/components/ops/layout/AdminShell";
export default function OpsLayout({ children }: { children: React.ReactNode }) {
return <AdminShell>{children}</AdminShell>;
}