15 lines
509 B
TypeScript
15 lines
509 B
TypeScript
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'domain', false, {
|
|
oakId: string;
|
|
systemId: string;
|
|
url: string;
|
|
apiPath: string;
|
|
port: string;
|
|
protocol: EntityDict['domain']['Schema']['protocol'];
|
|
tabValue: 'detail';
|
|
system: EntityDict['system']['Schema'];
|
|
}, {
|
|
onTabClick: (key: string) => void;
|
|
}>): import("react/jsx-runtime").JSX.Element;
|