4.0.0 • Published 9 years ago

panel.jsx v4.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

panel.jsx

React Panel component

Installation

$ npm install panel.jsx

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import Panel from 'panel.jsx';

class App extends React.Component {

  render() {

    var rows = [
      {href: '#', text: 'Dog'},
      {href: '#', text: 'Cat'},
      {href: '#', text: 'Horse'}
    ];

    return (
      <div>
        <Panel title="Animals" rows={rows} />
      </div>
    );
  }

}

ReactDOM.render(<App />, document.getElementById('react'));

Test

$ make test

License

MIT

4.0.0

9 years ago

3.0.0

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.0

10 years ago