@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
10 lines (9 loc) • 303 B
TypeScript
import { FC } from 'react';
import { WalletListViewTabItem } from '../../../shared';
type WalletListGridTabsProps = {
items: WalletListViewTabItem[];
onSelect: (index: number) => void;
value: number | null;
};
export declare const WalletListGridTabs: FC<WalletListGridTabsProps>;
export {};