9 lines
371 B
TypeScript
9 lines
371 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, 'area', true, {
|
|
areas?: EntityDict['area']['OpSchema'][];
|
|
}, {
|
|
onItemClicked: (area: EntityDict['area']['OpSchema']) => Promise<void>;
|
|
}>): React.JSX.Element;
|