Mahdi Dibaiee 18652ed5dc feat share: Ability to share files using Web Activities
feat pick: Ability to pick files for other apps
2015-09-07 15:18:53 +04:30

10 lines
167 B
JavaScript

import { PICK } from 'actions/types';
export default function(state = false, action) {
if (action.type === PICK) {
return action.active;
}
return state;
}