email-autocomplete-input
v0.2.4
Published
A simple email autocomplete input for React.js
Downloads
17
Maintainers
Readme
Email Autocomplete Input
Bult using mobx
, and react
Play with it here!
Installation
yarn add email-autocomplete-input
or npm i -S email-autocomplete-input
Usage
import EmailAutocompleteInput from 'email-autocomplete-input'
import { render } from 'react-dom'
import { observable } from 'mobx'
const email = observable('')
render(
<EmailAutocompleteInput value={email} onChange={value => email.set(value)} />,
document.body
)
Props
| Props | Description |
| ---------- | ---------------------------------------------------------------------------------------- |
| validate
| This will highlight the input with a red, yellow, or green border if the email is valid. |
| domains
| This will add additional domains to the autocomplete. |