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));
|
||
|
};
|
||
|
}
|