diff --git a/app/(main)/lottery/active/page.tsx b/app/(main)/lottery/active/page.tsx index d3c305f..7c7dccc 100644 --- a/app/(main)/lottery/active/page.tsx +++ b/app/(main)/lottery/active/page.tsx @@ -98,12 +98,14 @@ const page = () => {
{lotteryStatus === 'not-started' && ( - +
+ +
)} { - const [winners, setWinners] = useState([]); + const [winners, setWinners] = useState([1, 2, 3, 4, 5, 5, 5, 5]); return (
diff --git a/components/lottery/winners/LotteryWinnersList.tsx b/components/lottery/winners/LotteryWinnersList.tsx index 83a74e7..10e15bf 100644 --- a/components/lottery/winners/LotteryWinnersList.tsx +++ b/components/lottery/winners/LotteryWinnersList.tsx @@ -2,16 +2,18 @@ import LotteryWinner from './LotteryWinner'; const LotteryWinnersList = ({ winners }: { winners: number[] }) => { return ( -
-
-

Results

-

The results after each stage will be shown here.

-
+
+
+
+

Results

+

The results after each stage will be shown here.

+
-
- {winners.map((_, index) => ( - - ))} +
+ {winners.map((_, index) => ( + + ))} +
);