// @flow import React from 'react'; import PublishForm from 'component/publishForm'; import Page from 'component/page'; import YrblWalletEmpty from 'component/yrblWalletEmpty'; 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 && } ); } export default PublishPage;