mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 17:25:39 +01:00
6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
|
|
|
|
monaco.editor.create(document.getElementById('container'), {
|
|
value: 'sel {\nbackground: red;\n}',
|
|
language: 'css'
|
|
});
|