@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
9 lines (8 loc) • 344 B
TypeScript
import { ReactNode } from 'react';
import { UserProfile } from '@dynamic-labs/types';
export type UserDataFormProps = {
children?: ReactNode;
disableSubmit?: boolean;
userProfile: UserProfile | undefined;
};
export declare const OnboardingUserDataForm: ({ children, userProfile, disableSubmit, }: UserDataFormProps) => JSX.Element;