JSPM

  • Created
  • Published
  • Downloads 24227
  • Score
    100M100P100Q138986F
  • License MIT

Package Exports

  • react-ink

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-ink) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React Ink

Build Status

Add ink to any react component.

Ink Gif

Usage

Include ./ink.css within your stylesheet build process. Then you can include the <Ink /> component like so:

var React = require('react');
var Ink = require('react-ink');

module.exports = React.createClass({
  render() {
    return (
      <div>
        <Ink />
      </div>
    );
  }
});