Getting started
An overview of React Component Helper and how to install and use.
An overview of React Component Helper and how to install and use.
You can import the lib with as CommonJS modules as a global JS script.
$ npm install react-utils-helper@0.1.3
$ npm install react-utils-helper
var RU = require('react-utils-helper/lib');
You have to include a mixin for two way data binding between state and view.
var FormMixin = RU.FormMixin;
mixins: [FormMixin],
//or
mixins:[RU.FormMixin],