UNPKG

@dynamic-labs/sdk-react-core

Version:

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

8 lines (7 loc) 264 B
import { FC, PropsWithChildren } from 'react'; import { ShadowDOMProps } from '../ShadowDOM'; type DynamicBaseWidgetProps = { shadowDOMProps?: ShadowDOMProps; }; export declare const DynamicBaseWidget: FC<PropsWithChildren<DynamicBaseWidgetProps>>; export {};