import React from 'react'; import lbry from '../lbry.js'; var StartPage = React.createClass({ componentWillMount: function() { lbry.stop(); }, componentDidMount: function() { document.title = "LBRY is Closed"; }, render: function() { return (

LBRY is Closed

); } }); export default StartPage;