import { BoxWithHeaderSection, Spacing, StackCustom, TextCustom } from "@/components"; import { View } from "react-native"; import { Voting_ComponentDetailDataSection } from "./ComponentDetailDataSection"; export function Voting_BoxDetailSection({ headerAvatar, }: { headerAvatar?: React.ReactNode; }) { return ( <> {headerAvatar ? headerAvatar : } Pilihan : {Array.from({ length: 3 }).map((_, i) => ( Nama Pilihan {i + 1} ))} ); }