generated from moevm/nsql-clean-tempate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1e70cc
commit 8ac8b5f
Showing
13 changed files
with
256 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { createSlice } from '@reduxjs/toolkit'; | ||
|
||
export const logSlice = createSlice({ | ||
name: 'log', | ||
initialState: { | ||
logs: {} | ||
}, | ||
reducers: { | ||
setLogs: (state, action) => { | ||
state.logs = action.payload; | ||
} | ||
} | ||
}); | ||
|
||
export const { setLogs } = logSlice.actions; | ||
export default logSlice.reducer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { createSlice } from '@reduxjs/toolkit'; | ||
|
||
export const logSearchSlice = createSlice({ | ||
name: 'logSearch', | ||
initialState: { | ||
logSearchValues: [] | ||
}, | ||
reducers: { | ||
setLogSearchValues: (state, action) => { | ||
state.logSearchValues = action.payload; | ||
} | ||
} | ||
}); | ||
|
||
export const { setLogSearchValues } = logSearchSlice.actions; | ||
export default logSearchSlice.reducer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { createSlice } from '@reduxjs/toolkit'; | ||
|
||
export const searchSlice = createSlice({ | ||
name: 'search', | ||
initialState: { | ||
searchValues: [] | ||
}, | ||
reducers: { | ||
setSearchValues: (state, action) => { | ||
state.searchValues = action.payload; | ||
} | ||
} | ||
}); | ||
|
||
export const { setSearchValues } = searchSlice.actions; | ||
export default searchSlice.reducer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.