diff options
Diffstat (limited to 'src/store/errors.js')
-rw-r--r-- | src/store/errors.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/store/errors.js b/src/store/errors.js new file mode 100644 index 00000000..a484239a --- /dev/null +++ b/src/store/errors.js @@ -0,0 +1,21 @@ +import { createSlice } from '@reduxjs/toolkit'; + +const { reducer, actions } = createSlice({ + name: 'errors', + initialState: { + errors: [], + }, + reducers: { + push(state, action) { + state.errors.push(action.payload); + }, + pop(state) { + if (state.errors.length) { + state.errors.shift(); + } + }, + }, +}); + +export { actions as errorsActions }; +export { reducer as errorsReducer }; |