UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

9 lines (8 loc) 360 B
import { FC, MouseEventHandler, PropsWithChildren, ReactNode } from 'react'; type SelectWalletListLayoutProps = { title: ReactNode; onClickClose?: MouseEventHandler<HTMLButtonElement>; onClickBack?: MouseEventHandler<HTMLButtonElement>; }; export declare const SelectWalletListLayout: FC<PropsWithChildren<SelectWalletListLayoutProps>>; export {};