feat(auth): implement email/password login form
This commit is contained in:
15
apps/web/src/store/store.ts
Normal file
15
apps/web/src/store/store.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { configureStore } from "@reduxjs/toolkit";
|
||||
import authReducer from "../features/auth/authSlice";
|
||||
|
||||
/**
|
||||
* Redux Store Configuration
|
||||
* Centralizes all state management for the application
|
||||
*/
|
||||
export const store = configureStore({
|
||||
reducer: {
|
||||
auth: authReducer,
|
||||
},
|
||||
});
|
||||
|
||||
export type RootState = ReturnType<typeof store.getState>;
|
||||
export type AppDispatch = typeof store.dispatch;
|
||||
Reference in New Issue
Block a user