react-tappable v0.3.0 Release Notes

Release Date: 2015-02-07 // about 9 years ago
  • 🚀 This release restructured the code so that most methods are now on a Mixin, which is used by the Component (module.exports);

    You can now mix react-tappable into your own Components by using the Mixin directly:

    var Tappable = require('react-tappable');
    
    var MyComponent = React.createComponent({
        mixins: [Tappable.Mixin],
        /* ... */
    });