Hawk/src/js/actions/navigation.js
2015-09-03 15:02:46 +04:30

23 lines
303 B
JavaScript

import { NAVIGATION, TOGGLE } from 'actions/types';
export function show() {
return {
type: NAVIGATION,
active: true
}
}
export function hide() {
return {
type: NAVIGATION,
active: false
}
}
export function toggle() {
return {
type: NAVIGATION,
active: TOGGLE
}
}