Sha256: e658235ab1888198c52a45440b51370ac936345db8d1f8b5842f2aa6f1ad5302

Contents?: true

Size: 662 Bytes

Versions: 14

Compression:

Stored size: 662 Bytes

Contents

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

var Footer = React.createClass({

    handleLogoutAll: function() {
        console.log('logout all');
    },

    render: function () {

        var footerStyle = {
            height: (window.innerHeight * 0.1)
            //backgroundColor: 'grey'
        };

        return (

            <div className='footer' style={footerStyle}>

                <RaisedButton className='logout-button' label='Logout All' primary={true} onTouchTap={this.handleLogoutAll} />

            </div>

        );

    }

});

module.exports = Footer;

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
nutella_framework-0.6.2 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.6.1 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.6.0 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.5.1 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.5.0 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.32 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.31 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.30 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.29 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.28 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.27 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.26 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.25 framework_components/roomcast-teacher-controls/src/app/components/Footer.js
nutella_framework-0.4.24 framework_components/roomcast-teacher-controls/src/app/components/Footer.js