37 lines
858 B
TypeScript
37 lines
858 B
TypeScript
"use client";
|
|
|
|
import {
|
|
Badge,
|
|
Card,
|
|
Center,
|
|
Grid,
|
|
Group,
|
|
Radio,
|
|
Stack,
|
|
Text,
|
|
Title,
|
|
} from "@mantine/core";
|
|
import moment from "moment";
|
|
import ComponentVote_HasilVoting from "../../component/detail/detail_hasil_voting";
|
|
import ComponentVote_DaftarKontributorVoter from "../../component/detail/detail_daftar_kontributor";
|
|
import { MODEL_VOTING } from "../../model/interface";
|
|
import ComponentVote_DetailDataSetelahPublish from "../../component/detail/detail_data_setelah_publish";
|
|
|
|
export default function Vote_DetailKontribusi({
|
|
dataVote,
|
|
}: {
|
|
dataVote: MODEL_VOTING;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Stack py={"md"}>
|
|
<ComponentVote_DetailDataSetelahPublish
|
|
data={dataVote}
|
|
authorName={true}
|
|
/>
|
|
<ComponentVote_HasilVoting data={dataVote.Voting_DaftarNamaVote} />
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|