Files
hipmi-mobile/app/(application)/admin/dashboard.tsx
Bagasbanuna02 c4c16f19c1 Admin
Add:"
- app/(application)/admin/

## NO Issue
2025-08-05 17:40:46 +08:00

12 lines
223 B
TypeScript

import { TextCustom, ViewWrapper } from "@/components";
export default function AdminDashboard() {
return (
<>
<ViewWrapper>
<TextCustom>Admin Dashboard</TextCustom>
</ViewWrapper>
</>
);
}