accounts-frontend/src/components/ui/bsod/reducer.js

10 lines
157 B
JavaScript
Raw Normal View History

2016-07-29 23:25:19 +05:30
import { BSOD } from './actions';
export default function(state = false, {type}) {
if (type === BSOD) {
return true;
}
return state;
}