use-via-cep
v1.0.2
Published
Hook to abstract the logic to call viacep
Downloads
157
Readme
use-via-cep
Hook to abstract the logic to call viacep
Install
npm install --save use-via-cep
Usage
import * as React from 'react'
import { useViaCep } from 'use-via-cep'
const Example = () => {
const { cep, data, setCep } = useViaCep()
return (
<div>
<input value={cep} onChange={({ target }) => setCep(target.value)} />
<pre>{JSON.stringify(data)}</pre>
</div>
)
}
License
MIT © lucasfloriani
This hook is created using create-react-hook.