import React from 'react' import { FundingContext } from '../context' import PledgesTable from './PledgesTable' import FunderProfilesTable from './FunderProfilesTable' const FundsManagement = ({ open }) => { const maxWidth = open ? `${window.visualViewport.width - 35}px` : '100vw' return ( {({ allPledges, transferPledgeAmounts, fundProfiles, cancelFundProfile }) =>
{!!allPledges.length && } {!!fundProfiles.length && }
}
) } export default FundsManagement