Skip to content

Instantly share code, notes, and snippets.

@mattbell87
Created March 20, 2020 02:59
Show Gist options
  • Select an option

  • Save mattbell87/9e98a89186fda3c1685f320e1faae121 to your computer and use it in GitHub Desktop.

Select an option

Save mattbell87/9e98a89186fda3c1685f320e1faae121 to your computer and use it in GitHub Desktop.
Ace Editor in Ant Design v4
<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