accounts-frontend/packages/app/components/ui/bsod/reducer.js

10 lines
149 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;
}
2016-07-29 23:25:19 +05:30
return state;
2016-07-29 23:25:19 +05:30
}