Melih Polat
Results
1
comments of
Melih Polat
I use this, until this great lib has that capability. ```js onPaste={e => { e.preventDefault(); const clipboardData = e.clipboardData; const pastedData = clipboardData.getData('Text'); if (matchIsValidTel(pastedData)) { setValue(pastedData); } }} ```