// @flow import React, { Fragment } from 'react'; import PublishForm from 'component/publishForm'; import Page from 'component/page'; import Yrbl from 'component/yrbl'; import LbcSymbol from 'component/common/lbc-symbol'; import RewardAuthIntro from 'component/rewardAuthIntro'; type Props = { balance: number, totalRewardValue: number, }; function PublishPage(props: Props) { const { balance } = props; function scrollToTop() { const mainContent = document.querySelector('main'); if (mainContent) { mainContent.scrollTop = 0; // It would be nice to animate this } } return ( {balance === 0 ? (

{__( 'LBRY uses a blockchain, which is a fancy way of saying that users (you) are in control of your data.' )}

{__('Because of the blockchain, some actions require LBRY credits')} ( ).

{' '} {__( 'allows you to do some neat things, like paying your favorite creators for their content. And no company can stop you.' )}

} />
) : ( )}
); } export default PublishPage;