Всем привет, в реакте не сетит input: e.target.value, в чем может быть проблема ?
handleChange = async (e) => {
const res = await axios.get('/countries', { params: { term: e.target.value } })
.then(res => {
this.setState({ result:
res.data, input: e.target.value });
})