alex-cory / email-autocomplete-input

⚡️ Email autocomplete input
https://alex-cory.github.io/email-autocomplete-input
11 stars 2 forks source link

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.