mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 10:02:02 +05:30
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
import { BSOD } from './actions';
|
|
|
|
export default function(state = false, { type }) {
|
|
if (type === BSOD) {
|
|
return true;
|
|
}
|
|
|
|
return state;
|
|
}
|