Add: - IconArchive Voting Add: - detail voting - BoxDetailHasilVotingSection - BoxDetailPublishSection - BoxDetailSection - ButtonStatusSection Fix: - BoxPublishSection - ReportListSection: Hapus import useless # No Issue
31 lines
700 B
TypeScript
31 lines
700 B
TypeScript
import {
|
|
BaseBox,
|
|
StackCustom,
|
|
TextCustom,
|
|
Grid,
|
|
CircleContainer,
|
|
} from "@/components";
|
|
|
|
export default function Voting_BoxDetailHasilVotingSection() {
|
|
return (
|
|
<>
|
|
<BaseBox>
|
|
<StackCustom>
|
|
<TextCustom bold align="center">
|
|
Hasil Voting
|
|
</TextCustom>
|
|
|
|
<Grid>
|
|
{Array.from({ length: 4 }).map((_, i) => (
|
|
<Grid.Col span={3} style={{ alignItems: "center" }} key={i}>
|
|
<CircleContainer value={9 % (i + 4)} />
|
|
<TextCustom size="small">Pilihan {i + 1}</TextCustom>
|
|
</Grid.Col>
|
|
))}
|
|
</Grid>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
</>
|
|
);
|
|
}
|