14 lines
457 B
TypeScript
14 lines
457 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'wechatLogin', true, {
|
|
wechatLoginId: string;
|
|
qrCodeUrl: string;
|
|
loading: boolean;
|
|
successful: boolean;
|
|
type: EntityDict['wechatLogin']['Schema']['type'];
|
|
size: number;
|
|
}, {
|
|
refreshQrCode: () => void;
|
|
}>): React.JSX.Element;
|