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