mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
10 lines
129 B
TypeScript
10 lines
129 B
TypeScript
import { Action } from 'redux';
|
|
|
|
export const BSOD = 'BSOD';
|
|
|
|
export function bsod(): Action {
|
|
return {
|
|
type: BSOD,
|
|
};
|
|
}
|