// @flow import React from 'react'; import PublishForm from 'component/publishForm'; import Page from 'component/page'; import YrblWalletEmpty from 'component/yrblWalletEmpty'; import Spinner from 'component/spinner'; type Props = { balance: number, fetchingChannels: boolean, }; function PublishPage(props: Props) { const { balance, fetchingChannels } = props; function scrollToTop() { const mainContent = document.querySelector('main'); if (mainContent) { // $FlowFixMe mainContent.scrollTo({ top: 0, behavior: 'smooth', }); } } return ( {balance === 0 && } {balance !== 0 && fetchingChannels ? (
) : ( )}
); } export default PublishPage;