diff --git a/demo/src/App.tsx b/demo/src/App.tsx index c98a2a1..7e18b6c 100644 --- a/demo/src/App.tsx +++ b/demo/src/App.tsx @@ -4,7 +4,13 @@ import LeanMonacoComponent from './LeanMonaco' import { LeanMonacoOptions } from 'lean4monaco' function App() { - const [options, setOptions] = useState({websocket: {url: 'ws://localhost:8080/'}, vscode: {"workbench.colorTheme": "Visual Studio Light"}}) + const [options, setOptions] = useState({websocket: {url: 'ws://localhost:8080/'}, vscode: { + "workbench.colorTheme": "Visual Studio Light", + /* To add settings here, you can open your settings in VSCode (Ctrl+,), search + * for the desired setting, select "Copy Setting as JSON" from the "More Actions" + * menu next to the selected setting, and paste the copied string here. + */ + }}) const [numberEditors, setNumberEditors] = useState(1) return (