import React from "react"; import { Modal } from "modal/modal"; import { CreditAmount } from "component/common"; class ModalFirstReward extends React.PureComponent { render() { const { closeModal, reward } = this.props; return (

{__("Your First Reward")}

{__("You just earned your first reward of")} {" "}.

{__( "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 downloading something next." )}

{__( "Finally, please know that LBRY is an early beta and that it earns the name." )}

); } } export default ModalFirstReward;