Sha256: 82deeb2f3225977d553b0b1c277990d96cc22445875a5939ca262c2e8478b618

Contents?: true

Size: 492 Bytes

Versions: 44

Compression:

Stored size: 492 Bytes

Contents

var React = require('react');
var Mui = require('material-ui');
var Paper = Mui.Paper;

var ColorCell = React.createClass({

    handlePickColor: function() {
        this.props.onPickColor(this.props.color);
    },

    render: function() {

        var style = {
            backgroundColor: this.props.color
        };

        return (

            <div className='color-cell' style={style} onTouchTap={this.handlePickColor} > </div>

        );

    }

});

module.exports = ColorCell;

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
nutella_framework-0.6.4 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.6.3 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.6.2 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.6.1 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.6.0 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.5.1 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.5.0 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.32 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.31 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.30 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.29 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.28 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.27 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.26 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.25 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.24 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.23 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.22 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.21 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js
nutella_framework-0.4.20 framework_components/roomcast-channel-creator/src/app/components/ColorCell.js