Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 820 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 820 Bytes

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.