18 lines
551 B
TypeScript
18 lines
551 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
|
userId: string;
|
|
name: string;
|
|
idNumber: string;
|
|
idState: EntityDict['user']['Schema']['idState'];
|
|
idCardType: EntityDict['user']['Schema']['idCardType'];
|
|
idCardTypeArr: {
|
|
value: string;
|
|
label: string;
|
|
}[];
|
|
idStateStr: string;
|
|
}, {
|
|
onConfirm: () => void;
|
|
}>): React.JSX.Element;
|