Add : - lib/dummy-data/_master/bank.ts - investment/[id]/(transaction-flow)/select-bank.tsx - /investment/[id]/(transaction-flow)/process.tsx - investment/[id]/(transaction-flow)/invoice.tsx ## No Issue
14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import { BaseBox, TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function InvestmentProcess() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<BaseBox>
|
|
<TextCustom align="center">Menunggu Konfirmasi Admin</TextCustom>
|
|
</BaseBox>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|