email-autocomplete-input
js
A simple email autocomplete input for React.js
Version 0.2.4 License MIT
Keywords
react-componentreactautocompleteemailinput
INSTALL
Type:
<script src=" https://cdn.jsdelivr.net/npm/email-autocomplete-input@0.2.4/email-autocomplete-compiled.min.js "></script>

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. |