Add : - screens/Invesment/ - app/(application)/(user)/investment/[id]/ Fix: - index & portofolio: basic UI ## No Issue
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function InvestmentDetail() {
|
|
return (
|
|
<ViewWrapper>
|
|
<TextCustom>Investment Detail</TextCustom>
|
|
</ViewWrapper>
|
|
)
|
|
} |