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