Add: - lib/dummy-data/investment : list master - app/(application)/(user)/investment/(tabs) Main Layout: Fix: - app/(application)/(user)/investment/create.tsx Component Add: - Progress ## No Issue
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import { ViewWrapper, TextCustom } from "@/components";
|
|
|
|
export default function InvestmentPortofolio() {
|
|
return (
|
|
<ViewWrapper>
|
|
<TextCustom bold size="large">
|
|
Portofolio
|
|
</TextCustom>
|
|
</ViewWrapper>
|
|
);
|
|
}
|