Add: - app/(application)/(user)/investment/[id]/[file]/ - app/(application)/(user)/investment/[id]/add-document.tsx - app/(application)/(user)/investment/[id]/edit-document.tsx - app/(application)/(user)/investment/[id]/edit-prospectus.tsx - app/(application)/(user)/investment/[id]/recap-of-document.tsx Fix: - app/(application)/(user)/investment/[id]/list-of-document.tsx - app/(application)/(user)/investment/[id]/edit.tsx - app/(application)/(user)/investment/[id]/[status]/detail.tsx ## No Issue
21 lines
530 B
TypeScript
21 lines
530 B
TypeScript
import { BackButton, TextCustom, ViewWrapper } from "@/components";
|
|
import { Stack, useLocalSearchParams } from "expo-router";
|
|
import _ from "lodash";
|
|
|
|
export default function InvestmentProspectus() {
|
|
const { file } = useLocalSearchParams();
|
|
return (
|
|
<>
|
|
<Stack.Screen
|
|
options={{
|
|
title: `Pratinjau ${_.startCase(file as string)}`,
|
|
headerLeft: () => <BackButton />,
|
|
}}
|
|
/>
|
|
<ViewWrapper>
|
|
<TextCustom>Pratinjau File</TextCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|