Sha256: d5374f60e1744f96e205dfbe8dbdb64e619f37d3f9e786bdba359fbc405dcc99

Contents?: true

Size: 650 Bytes

Versions: 32

Compression:

Stored size: 650 Bytes

Contents

var React = require('react');
var Mui = require('material-ui');
var RaisedButton = require('./material-ui/raised-button_.jsx');

/**
 * @prop type
 * @prop onRemovedChannels
 */
var GlobalButton = React.createClass({

    removeChannels: function() {
      this.props.onRemovedChannels();
    },

    render: function(){

        var button = this.props.type==='add'? <RaisedButton label='Add' secondary={true} /> : <RaisedButton label='Remove' primary={true} onTouchTap={this.removeChannels} />;
        return (<div className='div-button-container'>
                    {button}
                </div>);
    }

});

module.exports = GlobalButton;

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
nutella_framework-0.6.12 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.11 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.10 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.9 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.8 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.7 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.6 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.5 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.4 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.3 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.2 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.1 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.6.0 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.5.1 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.5.0 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.4.32 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.4.31 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.4.30 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.4.29 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js
nutella_framework-0.4.28 framework_components/roomcast-package-creator/src/app/components/GlobalButton.js