Hawk/src/js/reducers/active-file.js
2015-09-03 15:02:46 +04:30

10 lines
176 B
JavaScript

import { ACTIVE_FILE } from 'actions/types';
export default function(state = -1, action) {
if (action.type === ACTIVE_FILE) {
return action.file;
}
return state;
}