react-input-card
v1.0.13
Published
A simple react component for masking input credit card
Downloads
2
Maintainers
Readme
React Input Card
use this package to masking your credit card input
Usage:
import InputCard from "react-input-card"
const App: React.FC = () => {
const [value, setValue] = useState('')
return (
<InputCard onChange={(event) => setValue(event.target.value)} />
)
}