UNPKG

@shopgate/pwa-common

Version:

Common library for the Shopgate Connect PWA.

12 lines (11 loc) 314 B
import { ACTION_UPDATE } from '@virtuous/conductor'; import * as actions from "../../action-creators/router"; /** * @param {Route} route The updated route. * @returns {Function} */ export function routeDidUpdate(route) { return dispatch => { dispatch(actions.routeDidUpdate(route, ACTION_UPDATE)); }; }