import { BoxWithHeaderSection, AvatarUsernameAndOtherComponent, Spacing, StackCustom, TextCustom, BadgeCustom, Grid, CircleContainer, } from "@/components"; import dayjs from "dayjs"; import { Href } from "expo-router"; export default function Voting_BoxPublishSection({ href, id, bottomComponent, }: { href?: Href id?: string bottomComponent?: React.ReactNode; }) { return ( <> Voting Title {id} {dayjs().format("DD/MM/YYYY")} -{" "} {dayjs().add(1, "day").format("DD/MM/YYYY")} {Array.from({ length: 4 }).map((_, i) => ( Pilihan {i + 1} ))} {bottomComponent} ); }