13 lines
450 B
TypeScript
13 lines
450 B
TypeScript
import React from "react";
|
|
import "@wangeditor/editor/dist/css/style.css";
|
|
import { IDomEditor } from "@wangeditor/editor";
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
export default function Render(props: WebComponentProps<EntityDict, "article", false, {
|
|
oakId: string;
|
|
content: string;
|
|
name: string;
|
|
width: string;
|
|
editor: IDomEditor;
|
|
}, {}>): React.JSX.Element;
|