vega-frontend-monorepo/libs/wallet/src/hooks.ts

11 lines
291 B
TypeScript
Raw Normal View History

import { useContext } from 'react';
import { VegaWalletContext } from '.';
export function useVegaWallet() {
const context = useContext(VegaWalletContext);
if (context === undefined) {
throw new Error('useVegaWallet must be used within VegaWalletProvider');
}
return context;
}