// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React from 'react'; import PublishForm from 'component/publishForm'; import Page from 'component/page'; import Yrbl from 'component/yrbl'; import Button from 'component/button'; 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 && (

{__('You need LBC to create a channel and upload content.')}

{__( 'Never fear though, there are tons of ways to earn LBC! You can earn or purchase LBC, or you can have your friends send you some.' )}

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