8 lines
299 B
TypeScript
8 lines
299 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, 'platform', false, {
|
|
name: string;
|
|
description: string;
|
|
}>): React.JSX.Element | null;
|