12 lines
380 B
TypeScript
12 lines
380 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'article', false, {
|
|
id: string;
|
|
name: string;
|
|
editor: any;
|
|
title?: string;
|
|
content?: string;
|
|
html?: string;
|
|
origin?: string;
|
|
}, {}>): import("react/jsx-runtime").JSX.Element;
|