Easy to get started
Starting with Regate is easy and quick. Just install it, and use the components as your need.
$ npm install regate --save
import React from 'react'
import { RegateEmail } from 'regate'

class App extends React.Component {
  onChange({value, isValid}) {
    console.log(value, isValid);
  }

  render() {
    return (
      <RegateEmail onChange={this.onChange} />
    )
  }
}