monaco-editor/monaco-editor-webpack-plugin/test/index.js
2021-11-05 12:13:58 +01:00

7 lines
No EOL
201 B
JavaScript

import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
monaco.editor.create(document.getElementById('container'), {
value: 'console.log("Hello, world")',
language: 'javascript'
});