hextastudio/ui needs your support to stay running 🫶 Help us
Input OTP
An Input component for OTP.
-
Installation
tsx
import { useState } from "react";
export const Home = () => {
const [otpValue, setOtpValue] = useState("");
const toggleToast = () => {
setShowToast(!showToast);
setTimeout(() => {
setShowToast(false);
}, 5000);