Play with it here!
yarn add email-autocomplete-input
or npm i -S email-autocomplete-input
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 | 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. |