import React from "react"; import { Modal } from "modal/modal"; import { CreditAmount } from "component/common"; import Link from "component/link/index"; const ModalCreditIntro = props => { const { closeModal, totalRewardValue, verifyAccount } = props; const totalRewardRounded = Math.round(totalRewardValue / 10) * 10; return (

{__("Claim Your Credits")}

The LBRY network is controlled and powered by credits called{" "} LBC, a blockchain asset.

{__("New patrons receive ")} {" "} {totalRewardValue ? : {__("credits")}} {" "} {__("in rewards for usage and influence of the network.")}

{__( "You'll also earn weekly bonuses for checking out the greatest new stuff." )}

); }; export default ModalCreditIntro;