import { AsyncRenderer, Button } from '@vegaprotocol/ui-toolkit'; import { useWithdrawals, WithdrawalDialogs, WithdrawalsTable, } from '@vegaprotocol/withdraws'; import { t } from '@vegaprotocol/react-helpers'; import { useState } from 'react'; import { VegaWalletContainer } from '../../components/vega-wallet-container'; import { Web3Container } from '@vegaprotocol/web3'; export const WithdrawalsContainer = () => { const { withdrawals, loading, error } = useWithdrawals(); const [withdrawDialog, setWithdrawDialog] = useState(false); console.log('render'); return (

{t('Withdrawals')}

{ return ; }} />
); };