12 lines
425 B
TypeScript
12 lines
425 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;
|
|
}, {}>): React.JSX.Element;
|