Hawk/src/js/reducers/lwd.js

9 lines
201 B
JavaScript
Raw Normal View History

2015-09-03 10:32:46 +00:00
import { CHANGE_DIRECTORY } from 'actions/types';
export default function(state = '', action) {
if (action.type === CHANGE_DIRECTORY) {
return state.get('cwd');
}
return state.get('lwd');
}