import { ContentState, EditorState } from 'draft-js'; import createDecorator from './createDecorator.js'; const createContentEditorState = (contentState: ContentState): EditorState => EditorState.createWithContent(contentState, createDecorator()); export default createContentEditorState;