Files
hipmi-mobile/app/(application)/home.tsx
2025-06-25 14:57:05 +08:00

10 lines
143 B
TypeScript

import HomeView from "@/components/Home/HomeView";
export default function Application() {
return (
<>
<HomeView />
</>
);
}