We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function EditorDemo() { return <div className="p-5 mb-4"> <h2>Editor</h2> <div className="mt-4 row row-cols-4"> <div className="col"> <label className="control-label">Language</label> <select className="language-picker"></select> </div> <div className="col"> <label className="control-label">Theme</label> <select className="theme-picker"> <option>Visual Studio</option> <option>Visual Studio Dark</option> <option>High Contrast Dark</option> </select> </div> </div> <div className="mt-2" style={{ height: 500, border: "1px solid gray" }}> <MonacoEditor model={undefined} /> </div> </div>; }
<->
class EditorDemo { render() { return ( <div className="p-5 mb-4"> <h2>Editor</h2> <div className="mt-4 row row-cols-4"> <div className="col"> <label className="control-label">Language</label> <select className="language-picker"></select> </div> <div className="col"> <label className="control-label">Theme</label> <select className="theme-picker"> <option>Visual Studio</option> <option>Visual Studio Dark</option> <option>High Contrast Dark</option> </select> </div> </div> <div className="mt-2" style={{ height: 500, border: "1px solid gray" }}> <MonacoEditor model={undefined} /> </div> </div>; ); } }
The text was updated successfully, but these errors were encountered:
Thanks for the refactoring idea!
Sorry, something went wrong.
No branches or pull requests
<->
The text was updated successfully, but these errors were encountered: