This is a lag-free One Time Password component for react-native.
export const MyComponent = () => {
const onSubmit = (code: string) => {
console.log(code)
}
return (
<OTPInput
inputQuantity={4}
onSubmit={onSubmit}
/>
)
}