diff --git a/components/lottery/form/LotteryForm.tsx b/components/lottery/form/LotteryForm.tsx new file mode 100644 index 0000000..c3f1bbc --- /dev/null +++ b/components/lottery/form/LotteryForm.tsx @@ -0,0 +1,29 @@ +import React, { useState } from 'react'; + +const LotteryForm = () => { + const [input, setInput] = useState(''); + + return ( +
+
+ Siziň kodyňyz +
+ setInput(e.target.value)} + /> + Öz kodyňyzy giriziň +
+
+ + +
+ ); +}; + +export default LotteryForm;