9 lines
419 B
TypeScript
9 lines
419 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'wpProduct', false, {
|
|
wpProduct?: (RowWithActions<EntityDict, 'wpProduct'> & {});
|
|
applications?: EntityDict['application']['OpSchema'][];
|
|
systemId: string;
|
|
}>): React.JSX.Element | null;
|