18 lines
443 B
TypeScript
18 lines
443 B
TypeScript
|
import { useEagerConnect } from '../../hooks/use-vega-wallet-eager-connect';
|
||
|
import { ReactNode } from 'react';
|
||
|
|
||
|
interface AppLoaderProps {
|
||
|
children: ReactNode;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Component to handle any app initialization, startup querys and other things
|
||
|
* that must happen for it can be used
|
||
|
*/
|
||
|
export function AppLoader({ children }: AppLoaderProps) {
|
||
|
// Get keys from vega wallet immediately
|
||
|
useEagerConnect();
|
||
|
|
||
|
return <>{children}</>;
|
||
|
}
|