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

10 lines
149 B
JavaScript

import { BSOD } from './actions';
export default function(state = false, { type }) {
if (type === BSOD) {
return true;
}
return state;
}