Hawk/src/js/reducers/navigation.js

10 lines
223 B
JavaScript
Raw Normal View History

2015-09-03 10:32:46 +00:00
import { NAVIGATION, TOGGLE } from 'actions/types';
export default function(state = false, action) {
if (action.type === NAVIGATION) {
return action.active === TOGGLE ? !state : action.active;
}
return state;
}