- Create screens/Admin/Super-Admin/ScreenSuperAdmin.tsx * Migrate from ViewWrapper to OS_Wrapper * Add usePagination hook for pagination & skeleton loading * Add AdminBasicBox for card layout (same as user-access) * Add pull-to-refresh & infinite scroll support - Create screens/Admin/Super-Admin/ScreenSuperAdminDetail.tsx * Migrate from ViewWrapper to OS_Wrapper * Add useAuth hook for user validation * Add pull-to-refresh support - Simplify route files: * app/(application)/admin/super-admin/index.tsx → 4 lines * app/(application)/admin/super-admin/[id]/index.tsx → 4 lines Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
import { Admin_ScreenSuperAdminDetail } from "@/screens/Admin/Super-Admin/ScreenSuperAdminDetail";
|
|
|
|
export default function AdminSuperAdminDetail() {
|
|
return <Admin_ScreenSuperAdminDetail />;
|
|
}
|