JSPM

react-email-autocomplete-dropdown

0.5.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q38070F
  • License MIT

react email autocomplete with dropdown

Package Exports

  • react-email-autocomplete-dropdown

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-email-autocomplete-dropdown) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-email-autocomplete-dropdown

image

Demo

https://codesandbox.io/s/angry-elbakyan-s3xt7?file=/src/App.js

Installation

npm install react-email-autocomplete-dropdown

Usage

import React, { Component } from 'react';
import Email from 'react-email-autocomplete-dropdown';
import 'react-email-autocomplete-dropdown/lib/main.min.css';

### Usage
class App extends Component {
  render() {
    return (
      <div>
        <Email />
      </div>
    )
  }
}

export default App;

Custom domains

const domains = [
  "test.com",
  "hello.com"
];
class App extends Component {
  render() {
    return (
      <div>
        <Email domains={domains} />
      </div>
    )
  }
}


export default App;

License

This software is released under the MIT License.