/signup-widget-react-mobx

A signup Widget written with ReactJS and MobX

Primary LanguageJavaScriptMIT LicenseMIT

Signup Widget

This Widget provides an easy-to-use fullscreen UI for a signup.

Usage

/**
 * Attach the Widget to a DOMNode
 */
SignupWidget.create('app')
  .then(() => {
    console.log('Widget created');
  })
  .catch((err) => {
    console.error('An error occured: ', err);
  });

Dependencies

The embedding page needs to provide the following libraries:

Development

Prerequisites

Ensure you have installed (globally) the following software on your system:

JavaScript Dependencies

Inside your local working directory:

$ yarn install

Start the Development Server

To start the development server:

$ yarn dev

Linting

$ yarn lint

Testing

$ yarn test