You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
854 B
28 lines
854 B
import { createSlice, createAsyncThunk } from '@reduxjs/toolkit' |
|
export const kpdlSlice = createSlice({ |
|
name: 'kpdl', |
|
initialState: { |
|
selectedOpsi: null, |
|
dataMonitoring: [], |
|
dataUrut: { urutKanwil: [], urutKpp: [], urutSeksi: [], urutPegawai: [] }, |
|
progresifitasPembayaran: null |
|
}, |
|
reducers: { |
|
setSelectedOpsi: (state, action) => { |
|
state.selectedOpsi = action.payload |
|
}, |
|
setDataMonitoring: (state, action) => { |
|
state.dataMonitoring = action.payload |
|
}, |
|
setDataUrut: (state, action) => { |
|
state.dataUrut = action.payload |
|
}, |
|
setProgresifitasPembayaran: (state, action) => { |
|
state.progresifitasPembayaran = action.payload |
|
} |
|
} |
|
}) |
|
|
|
export const { setSelectedOpsi, setDataMonitoring, setDataUrut, setProgresifitasPembayaran } = kpdlSlice.actions |
|
|
|
export default kpdlSlice.reducer
|
|
|