I\'m using ReactJS to render my DOM.
I want to add the spellcheck=\"false\" attribute on a text input, so I do this:
spellcheck=\"false\"
render() { retu
Try using spellCheck instead. (Note the capital C)
spellCheck
The docs are good for explaining how default HTML attributes should be referenced in React.