react-otpcode-input
Advanced tools
Comparing version 0.1.7 to 0.1.8
@@ -1,1 +0,1 @@ | ||
export function OtpInput(props: any): any; | ||
export function OtpInput(): any; |
@@ -8,6 +8,6 @@ "use strict"; | ||
///@ts-check | ||
var OtpInput = function OtpInput(numberOfInputs) { | ||
return _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement("div", null, numberOfInputs), _react["default"].createElement("div", null, "OTP")); | ||
var OtpInput = function OtpInput() { | ||
return _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement("div", null, "OTP")); | ||
}; | ||
exports["default"] = OtpInput; |
@@ -5,6 +5,6 @@ ///@ts-check | ||
const OtpInput = numberOfInputs => { | ||
const OtpInput = () => { | ||
return ( | ||
<> | ||
<div>{numberOfInputs}</div> | ||
{/* <div>{numberOfInputs}</div> */} | ||
<div>OTP</div> | ||
@@ -11,0 +11,0 @@ </> |
{ | ||
"name": "react-otpcode-input", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "OTP Input Component", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2637