8 lines
294 B
TypeScript
8 lines
294 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from '../../../general-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
|
error: string;
|
|
loading: boolean;
|
|
}, {}>): JSX.Element;
|