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