Skip to content
This repository has been archived by the owner on May 4, 2020. It is now read-only.

Major Upgrade in prep for 1.0 launch

Latest
Compare
Choose a tag to compare
@jurassix jurassix released this 17 Dec 19:30
· 25 commits to master since this release

Changes in this release will break from 8.x and below.

Please see README for working with now repo and ES5. (excerpt below)

Usage as Mixin >= ES2015

import immutableRenderMixin from 'react-immutable-render-mixin';

React.createClass({
  mixins: [immutableRenderMixin],

  render: function() {
    return <div className={this.props.className}>foo</div>;
  }
});

Usage with <= ES5

var immutableRenderMixin = require('react-immutable-render-mixin').default;

React.createClass({
  mixins: [immutableRenderMixin],

  render: function() {
    return <div className={this.props.className}>foo</div>;
  }
});