UNPKG

@vchatcloud/react-ui-kit

Version:

VChatCloud UI Kit for react integration

9 lines (8 loc) 335 B
import { User } from '@vchatcloud/sdk'; interface LoginProps { readonly logoUrl?: string; readonly company?: string; readonly onSubmit: (user: Pick<User, "nickName" | "userInfo">) => void; } declare const Login: ({ logoUrl, company, onSubmit }: LoginProps) => import("react/jsx-runtime").JSX.Element; export default Login;