// @flow import React from 'react'; import PostForm from 'component/publish/post/postForm'; import Page from 'component/page'; import YrblWalletEmpty from 'component/yrblWalletEmpty'; import Spinner from 'component/spinner'; type Props = { balance: number, fetchingChannels: boolean, }; function PostPage(props: Props) { const { balance, fetchingChannels } = props; return ( {balance < 0.01 && } {balance >= 0.01 && fetchingChannels ? (
) : ( )}
); } export default PostPage;