import React from 'react'; import ModalPage from './modal-page.js'; import {Link} from '../component/link.js'; export const Welcome = React.createClass({ propTypes: { onDone: React.PropTypes.func.isRequired, }, handleOKClicked: function() { this.props.onDone(); }, render: function() { return (

Welcome to LBRY

Content will go here...
); } });