import React from 'react'; import lbry from '../lbry.js'; import {BusyMessage, Icon} from './common.js'; import {Link} from '../component/link.js' var LoadScreen = React.createClass({ propTypes: { message: React.PropTypes.string.isRequired, details: React.PropTypes.string, isWarning: React.PropTypes.bool, }, handleCancelClick: function() { history.back(); }, getDefaultProps: function() { return { isWarning: false, } }, getInitialState: function() { return { message: null, details: null, isLagging: false, } }, render: function() { const imgSrc = lbry.imagePath('lbry-white-485x160.png'); return (
LBRY

{this.props.isWarning ? : null} {this.props.details} {this.props.isWarning ?
: null}
); } }); export default LoadScreen;