import React from 'react'; import { BarftEditorPage, BaseEditorProps } from "@components/Editor/BraftEditor"; import { ControlsToolBar, ToolListItem } from "@components/Editor/CommonTool/ControlsToolBar"; import { ContentUtils } from "braft-utils"; import styles from './index.less'; interface SimpleEditorProps extends BaseEditorProps { toolAlign?: 'inner' | 'bottom'; toolList?: Array; injectControlsToolBar?: any; toolBarContainerStyle?: any; appendToolBtn?: any; } const SimpleEditor = (props: SimpleEditorProps) => { const { value, onChange, toolAlign = 'inner', toolList = [], injectControlsToolBar = {}, toolBarContainerStyle = {}, appendToolBtn = null, } = props; if (toolAlign === 'inner') { return ( ( ) } /> ) } return (
{appendToolBtn}
); } export default SimpleEditor;