react-ace
react-ace copied to clipboard
Textarea has not attr "name"
The textarea has not attr "name", any solution ?
<AceEditor
mode="python"
theme="github"
id="script"
name="script"
height="60vh"
width="100%"
fontSize={14}
showPrintMargin={true}
showGutter={true}
highlightActiveLine={true}
value={value}
setOptions={{
enableBasicAutocompletion: true,
enableLiveAutocompletion: true,
enableSnippets: false,
showLineNumbers: true,
tabSize: 2,
}}
onChange={onChange}
/>
related to https://github.com/securingsincity/react-ace/issues/876