import { ButtonCustom } from "@/components";
import { router } from "expo-router";
export default function Investment_ButtonInvestasiSection({
id,
isMine,
reminder,
}: {
id: string;
isMine: boolean;
reminder: boolean;
}) {
return (
<>
{isMine ? (
Investasi ini milik Anda
) : (
{
router.navigate(`/investment/${id}/(transaction-flow)`);
}}
>
{reminder ? "Periode Investasi Berakhir" : "Beli Saham"}
)}
>
);
}