import React from 'react'; import lbryio from '../lbryio.js'; import {getLocal, setLocal} from '../utils.js'; import {FormField} from '../component/form.js' import {Link} from '../component/link.js' import rewards from '../rewards.js'; const EmailPage = React.createClass({ handleSubmit: function(event) { if (event !== undefined) { event.preventDefault(); } if (!this.state.email) { this._emailField.showRequiredError(); } }, componentWillMount: function() { this._getRewardType(); }, render: function() { return (

Verify your Email Address

); } }); export default EmailPage;