Files
Users-Wrench/src/store/walletDetails.js
T
2023-08-29 09:47:35 +01:00

22 lines
438 B
JavaScript

import { createSlice } from "@reduxjs/toolkit";
const initialState = {
walletDetails: {
loading: true,
data: []
},
};
export const walletSlice = createSlice({
name: "walletDetails",
initialState,
reducers: {
updateWalletDetails: (state, action) => {
state.walletDetails = { ...action.payload };
},
},
});
export const { updateWalletDetails } = walletSlice.actions;
export default walletSlice.reducer;