Disable browser autocomplete on React Inputs

Does anyone know how to disable browser autocomplete on an Input element in React.js? I have tried adding autoComplete="off" and autocomplete="new-password" to the element, but neither approach has worked.

Any help would be appreciated.

Try adding autoComplete="false" to the Input element in React.js. This should disable browser autocomplete.