16 lines
569 B
TypeScript
16 lines
569 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps, RowWithActions } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', true, {
|
|
userArr: Array<RowWithActions<EntityDict, 'user'> & {
|
|
avatar: string;
|
|
mobile: string;
|
|
userStateStr: string;
|
|
userStateColor: string;
|
|
}>;
|
|
isRoot: boolean;
|
|
}, {
|
|
onCellClicked: (id: string, event?: string) => Promise<void>;
|
|
gotoCreateUser: () => Promise<void>;
|
|
}>): React.JSX.Element;
|