Hawk/src/js/reducers/active-file.js

10 lines
176 B
JavaScript
Raw Normal View History

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