public/js/reducers/externalAtomReducer.js (8 lines of code) (raw):

export default function externalAtom(state = null, action) { switch (action.type) { case 'EXTERNAL_ATOM_GET_RECEIVE': return action.externalAtom || false; default: return state; } }