1cdea0b2e8
* feat(web3): make web3 container component reusable * feat(console-lite): add deposits tab to portfolio page * fix(console-lite): linting errors * fix(console-lite): pr comments * fix(console-lite): use enums for network vars
16 lines
406 B
TypeScript
16 lines
406 B
TypeScript
import { VegaWalletContainer } from '../../../components/vega-wallet-container';
|
|
import { Web3Container } from '@vegaprotocol/web3';
|
|
import { WithdrawalsContainer } from '../withdrawals-container';
|
|
|
|
const Withdrawals = () => {
|
|
return (
|
|
<VegaWalletContainer>
|
|
<Web3Container>
|
|
<WithdrawalsContainer />
|
|
</Web3Container>
|
|
</VegaWalletContainer>
|
|
);
|
|
};
|
|
|
|
export default Withdrawals;
|