@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
9 lines (8 loc) • 316 B
TypeScript
import { FC } from 'react';
import { SessionInformation } from '../../utils/types/SessionInformation';
export interface SessionKeyApprovalViewProps {
session: SessionInformation;
onApprove: () => void;
onReject: () => void;
}
export declare const SessionKeyApprovalView: FC<SessionKeyApprovalViewProps>;