axios.defaults.headers.common['Authorization'] = "Bearer "+localStorage.getItem('token');
axios.get(baseUrl+'/country/fetch/'+id)
.then((response) => {
})
.catch(function (error) {
console.log(error);
});
Please help me to pass data from child to parent. Here I am getting data as response. Now I want to pass this to parent How can I?