ErrorPro / react-google-autocomplete

React components for google places API.
MIT License
473 stars 114 forks source link

How to set a placeholder for search box input ? #90

Closed Mmferry closed 3 years ago

Mmferry commented 3 years ago

I want to set a translated placeholder for the search box?

laurinenas commented 3 years ago

Hi @Mmferry have You tried adding the placeholder by just passing the placeholder value in props? Like this:

<AutoComplete
  placeholder={"Please enter the address"}
/>
ErrorPro commented 3 years ago

Thank you @laurinenas