dg-npm-templates
Version:
Npx generator for react app dependency creation by digite
15 lines (13 loc) • 448 B
JavaScript
import AppUtil from './../../../utils/AppUtils';
import { initNavigationPanel } from './../reducers/NavigationPanelReducer';
import { getURL } from './../../../helpers/URLHelper';
export const loadNavigationData = () => {
return dispatch => {
AppUtil.ajax({
url: getURL('GET_NAVIGATION_DATA'),
successFn: response => {
dispatch( initNavigationPanel(response) );
}
})
}
}