9 lines
319 B
TypeScript
9 lines
319 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, 'parasite', false, {
|
|
loading: boolean;
|
|
illegal: boolean;
|
|
expired: boolean;
|
|
}, {}>): React.JSX.Element;
|