11 lines
362 B
TypeScript
11 lines
362 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from './../../../general-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function render(props: WebComponentProps<EntityDict, 'article', false, {
|
|
title?: string;
|
|
author?: string;
|
|
abstract?: string;
|
|
content?: string;
|
|
html?: string;
|
|
}, {}>): JSX.Element;
|