JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<span>
Auto complete off works if name and id attribute is not set on input tag
<input type="text"/>
</span>
<span>
Auto complete will work here since id attribute is set
<input id="name" type="text"/>
</span>
</div>