mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-14 10:31:07 +08:00
Added logged in Redux state
This commit is contained in:
parent
1ac666fe0b
commit
1f355c3825
6 changed files with 167 additions and 2 deletions
8
src/Plugins/Redux/Store/Store.tsx
Normal file
8
src/Plugins/Redux/Store/Store.tsx
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { configureStore } from "@reduxjs/toolkit";
|
||||
import LoginReducer from "../../../Features/Login/LoginSlice";
|
||||
|
||||
export default configureStore({
|
||||
reducer: {
|
||||
logged_in: LoginReducer,
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue