I am using google chrome71, and here in input tag, Autocomplete/autosuggestion where the browser does automatically fill the input field is not working in react +HTML.
I have added form tag outside but didn't found any luck to get the autocomplete suggestion. 
<form>
<label style={{ display:'none' }} htmlFor='mobile'>Name</label>
  <input className=''
     type='text' placeholder='Mobile number' autoComplete='tel'
     value={props.mobilenumber} name='mobile' id='mobile'
     onChange= {props.actionHandler} />
</form>
Here I expect to autocomplete of number, which I used earlier... Appreciate.