Files
hipmi-mobile/app/(application)/(user)/investment/[id]/(transaction-flow)/index.tsx
Bagasbanuna02 2931f6ba55 Investment
Add:
- screens/Invesment/DetailDataPublishSection.tsx
- screens/Invesment/BoxProgressSection.tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)

## No Issue
2025-07-31 15:45:07 +08:00

14 lines
323 B
TypeScript

import { TextCustom, ViewWrapper } from "@/components";
import { useLocalSearchParams } from "expo-router";
export default function InvestmentInvest() {
const { id } = useLocalSearchParams();
return (
<>
<ViewWrapper>
<TextCustom>Pembelian Saham {id}</TextCustom>
</ViewWrapper>
</>
);
}