lbry-desktop/js/page/start.js

13 lines
262 B
JavaScript
Raw Normal View History

var StartPage = React.createClass({
componentWillMount: function() {
lbry.stop();
},
render: function() {
return (
<main>
<h1>LBRY is not running</h1>
<Link href="lbry://lbry" label="Start LBRY" />
</main>
);
}
});