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