Javascript – React google autocomplete – Uncontrolled input warning
In react app, I have added react-google-autocomplete and antd package and using it like import { Button, Input, Form, Row, Col } from "antd"; .... const getCityFromPlace = (place) => { let city = ""; place.address_components.forEach((component) => { if (component.types.includes("locality"))…