react-matrix

0.0.6 • Public • Published

react-matrix

React Component for representing Matrixes.

Example

https://cirocosta.github.io/react-matrix

React Matrix

React.createClass({
  getInitialState: function () {
    return {
      matrix: [
        [0,0,0,0,0],
        [0,1,0,1,0],
        [0,1,1,1,0],
        [0,0,1,0,0],
        [0,0,0,0,0],
      ]
    }
  },
 
  render: function () {
    return (
      <Matrix squareSize={20} matrix={this.state.matrix} />
    );
  }
});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.6
    0
    • latest

Version History

Package Sidebar

Install

npm i react-matrix

Weekly Downloads

0

Version

0.0.6

License

MIT

Last publish

Collaborators

  • cirocosta