↧
Answer by Sultan H. for Better approach to get store data without direct access
You can make an action getData(), which will have a faster subscription than this.props in a component.another option is, send getData() function as a second argument callback() to your...
View ArticleBetter approach to get store data without direct access
Let's assume that store have data like this:{ filter: { id: 'John Doe' }, page: 1, pageSize: 10}I want to get data from server with those values.I can achieve this by using React-Redux's connect...
View Article