Add: - screens/Invesment/DetailDataPublishSection.tsx - screens/Invesment/BoxProgressSection.tsx - app/(application)/(user)/investment/[id]/(transaction-flow) ## No Issue
14 lines
323 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|