Created
March 20, 2020 02:59
-
-
Save mattbell87/9e98a89186fda3c1685f320e1faae121 to your computer and use it in GitHub Desktop.
Ace Editor in Ant Design v4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Form.Item name="styles" label="Custom CSS Styles"> | |
| <AceEditor | |
| ref={this.ace} | |
| mode="css" | |
| theme="tomorrow" | |
| name={this.props.name} | |
| fontSize={14} | |
| showPrintMargin={true} | |
| showGutter={true} | |
| highlightActiveLine={true} | |
| setOptions={{ | |
| enableBasicAutocompletion: true, | |
| enableLiveAutocompletion: true, | |
| enableSnippets: false, | |
| showLineNumbers: true, | |
| tabSize: 4, | |
| useWorker: false | |
| }} | |
| style={{ | |
| width: "100%", | |
| height: "15em" | |
| }} | |
| /> | |
| </Form.Item> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment