// Как создатель действий становится доступным для контейнера в реквизите, если он не присутствует в состоянии избыточности?
//This is my action creator
export function latestNews(){
const request = fetch(`${URL}/articles?_order=desc&_end=3`, {method:'GET'})
.then(response => response.json());
return {
type: 'GET_LATEST',
payload: request
}
}
//Below is my container's lifecycle method
componentDidMount(){
this.props.latestNews();
};
//How can I access my action creator through props? I want to understand the concept