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

{__("Quick Credit Intro")}

The LBRY network is controlled and powered by credits called{" "} , a blockchain asset. {" "} {" "} {__( "is used to publish content, to have a say in the network rules, and to access paid content." )}

{__("New verified users can receive more than ")} {" "} {totalRewardValue ? : {__("credits")}} {" "} {__(" in rewards for usage and influence of the network.")}

{currentBalance <= 0 ?

{__( "Without any credits, you will not be able to take this action." )}

:

{__( "But you probably knew all this, since you've already got %s of them!", formatCredits(currentBalance, 2) )}

}
); }; export default ModalCreditIntro;