lbry-desktop/js/page/start.js

16 lines
366 B
JavaScript
Raw Normal View History

var StartPage = React.createClass({
componentWillMount: function() {
lbry.stop();
},
2016-08-08 00:25:29 +02:00
componentDidMount: function() {
document.title = "LBRY is Closed";
},
render: function() {
return (
<main className="page">
2016-08-08 00:25:29 +02:00
<h3>LBRY is Closed</h3>
<Link href="lbry://lbry" label="Click here to start LBRY" />
</main>
);
}
});