实现权限管理页面与功能

This commit is contained in:
2026-03-18 17:13:31 +08:00
parent efe1568ab5
commit c4e1da8912
25 changed files with 2245 additions and 18 deletions

5
src/components/page.tsx Normal file
View File

@@ -0,0 +1,5 @@
import type { ReactNode } from "react"
export function Page(props: { children: ReactNode }) {
return <div className="flex flex-col">{props.children}</div>
}