UNPKG

apeman-react-mixins

Version:
16 lines (13 loc) 337 B
/** * Thin wrapper for PureRenderMixin */ 'use strict' const PureRenderMixin = require('react-addons-pure-render-mixin') const ApPureMixin = { $apPureMixed: true, /** * Shallow compare props and states. */ shouldComponentUpdate: PureRenderMixin.shouldComponentUpdate } export default Object.freeze(ApPureMixin)