From 6574cf7ad3fca37f6ab257f65a615328c20e9ce9 Mon Sep 17 00:00:00 2001 From: Kakabay <2kakabayashyrberdyew@gmail.com> Date: Wed, 11 Dec 2024 18:13:22 +0500 Subject: [PATCH] lotteryCountDown refactored --- .../lottery/rules/LotteryRulesSection.tsx | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 components/lottery/rules/LotteryRulesSection.tsx diff --git a/components/lottery/rules/LotteryRulesSection.tsx b/components/lottery/rules/LotteryRulesSection.tsx new file mode 100644 index 0000000..c86c003 --- /dev/null +++ b/components/lottery/rules/LotteryRulesSection.tsx @@ -0,0 +1,40 @@ +const LotteryRulesSection = () => { + return ( +
+
+
+

Lotereýanyň duzgunleri:

+
+
+

Umumy düzgünler:

+
    + {Array(5) + .fill(' ') + .map((item, i) => ( +
  • + Ilkinji we dogry jogap beren sanawda ilkinji ýeri eýelýär +
  • + ))} +
+
+ +
+

Üns beriň:

+
    + {Array(1) + .fill(' ') + .map((item, i) => ( +
  • + SMS = 1 manat +
  • + ))} +
+
+
+
+
+
+ ); +}; + +export default LotteryRulesSection;