xxxxxxxxxx
import * from './api/';
export const getPosts=()=>async(dispatch)=>//we are using thunk from redux so two arrow functions
{
try{
const { data }=await api.fetchPosts();
const action={type:'FETCH_ALL',payload:data};
dispatch(action);
}
catch(error){
console.log(error.message);
}
}