var DrawerItem = React.createClass({ render: function() { var isSelected = this.props.viewingPage == this.props.href.substr(2); return } }); var drawerImageStyle = { //@TODO: remove this, img should be properly scaled once size is settled height: '36px' }; var Drawer = React.createClass({ getInitialState: function() { return { balance: 0, }; }, componentDidMount: function() { lbry.getBalance(function(balance) { this.setState({ balance: balance }); }.bind(this)); }, render: function() { return ( ); } });