1.0.2 • Published 4 years ago

use-via-cep v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

use-via-cep

Hook to abstract the logic to call viacep

NPM JavaScript Style Guide

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.