mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
18 lines
481 B
TypeScript
18 lines
481 B
TypeScript
import Setting from '@joplin/lib/models/Setting';
|
|
import createEditor from '../createEditor';
|
|
import createEditorSettings from './createEditorSettings';
|
|
|
|
const createEditorControl = (initialText: string) => {
|
|
const editorSettings = createEditorSettings(Setting.THEME_LIGHT);
|
|
|
|
return createEditor(document.body, {
|
|
initialText,
|
|
settings: editorSettings,
|
|
onEvent: _event => {},
|
|
onLogMessage: _message => {},
|
|
onPasteFile: null,
|
|
});
|
|
};
|
|
|
|
export default createEditorControl;
|