12 lines
422 B
TypeScript
12 lines
422 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { Style } from '../../../types/Style';
|
|
import { Config } from '../../../types/Config';
|
|
export default function render(props: WebComponentProps<EntityDict, 'platform', false, {
|
|
id: string;
|
|
name: string;
|
|
config: Config;
|
|
style: Style;
|
|
}>): React.JSX.Element | null;
|