9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
|
import * as types from './actionsTypes';
|
||
|
|
||
|
export default function setNavigation(navigator = {}) {
|
||
|
return {
|
||
|
type: types.NAVIGATION.SET,
|
||
|
navigator
|
||
|
};
|
||
|
}
|