Icon:
Add: - IconArchive Voting Add: - detail voting - BoxDetailHasilVotingSection - BoxDetailPublishSection - BoxDetailSection - ButtonStatusSection Fix: - BoxPublishSection - ReportListSection: Hapus import useless # No Issue
This commit is contained in:
30
screens/Voting/BoxDetailHasilVotingSection.tsx
Normal file
30
screens/Voting/BoxDetailHasilVotingSection.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user