8 lines
302 B
TypeScript
8 lines
302 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'passport', false, {
|
|
systemId: string;
|
|
systemName: string;
|
|
}>): React.JSX.Element | null;
|