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

{__("Blockchain 101")}

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

{currentBalance <= 0 ?

You currently have , so the actions you can take are limited.

However, there are a variety of ways to get credits, including more than {" "} {totalRewardValue ? : {__("?? credits")}} {" "}{" "} {__( " in rewards available for being a proven human during the LBRY beta." )}

:

But you probably knew this, since you've already got{" "} .

}
); }; export default ModalCreditIntro;