// @flow import React from 'react'; import { Modal } from 'modal/modal'; type Props = { closeModal: () => void, }; class ModalFirstReward extends React.PureComponent { render() { const { closeModal } = this.props; return (

{__('You just earned your first reward!')}

{__("This reward will show in your Wallet in the top right momentarily (if it hasn't already).")}

{__( 'These credits are used to compensate creators, to publish your own content, and to have say in how the network works.' )}

{__('No need to understand it all just yet! Try watching or publishing something next.')}

); } } export default ModalFirstReward;