mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 03:19:10 -04:00
22 lines
405 B
JavaScript
Vendored
22 lines
405 B
JavaScript
Vendored
import * as types from "./SnackbarTypes";
|
|
|
|
export default (state = {}, action) => {
|
|
switch (action.type) {
|
|
case types.SHOW_SNACKBAR:
|
|
return {
|
|
...state,
|
|
isOpen: true,
|
|
message: action.message,
|
|
type: action.snacknarType
|
|
};
|
|
case types.HIDE_SNACKBAR:
|
|
return {
|
|
...state,
|
|
isOpen: false
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|