10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
import EditorJS from "@editorjs/editorjs";
|
|
import Header from "@editorjs/header";
|
|
import List from "@editorjs/list";
|
|
|
|
create_editor_for_short_description = () => {
|
|
let editor = new EditorJS({
|
|
holder: "course-description",
|
|
});
|
|
};
|