@aioha/react-ui
Version:
Ready-made React modal for Aioha
9 lines (8 loc) • 346 B
TypeScript
import React, { Dispatch, SetStateAction } from 'react';
export interface UserModalProps {
imageServer?: string;
explorerUrl?: string;
onClose: Dispatch<SetStateAction<boolean>>;
onSwitchUser: () => any;
}
export declare const UserModal: ({ imageServer, explorerUrl, onClose, onSwitchUser }: UserModalProps) => React.JSX.Element;