Phyks (Lucas Verney)
40f6223bd0
* Keep track of pagination in the store * Use Immutable in reducers * Finish i18n, every available strings are now translated in English and French * Add a loading indicator * Premises of API error handling * Better locale negotiation
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
import { push } from "react-router-redux";
|
|
|
|
export function goToPage(pageLocation) {
|
|
return (dispatch) => {
|
|
dispatch(push(pageLocation));
|
|
};
|
|
}
|