From 3eaa56f0306ead818f64c3d99fc6d230d9b970a4 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Wed, 18 Feb 2026 20:42:03 -0500 Subject: HERE WE GO, HERE WE GO, HERE WE GO --- jb-ui/src/store.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 jb-ui/src/store.ts (limited to 'jb-ui/src/store.ts') diff --git a/jb-ui/src/store.ts b/jb-ui/src/store.ts new file mode 100644 index 0000000..24f1654 --- /dev/null +++ b/jb-ui/src/store.ts @@ -0,0 +1,30 @@ +import appReducers from "@/models/appSlice" +import grlStatsReducers from "@/models/grlStatsSlice" +import profilingQuestionsReducers from "@/models/profilingQuestionsSlice" +import type { Action, ThunkAction } from '@reduxjs/toolkit' +import { configureStore } from '@reduxjs/toolkit' + + +export const store = configureStore({ + reducer: { + app: appReducers, + stats: grlStatsReducers, + profilingQuestions: profilingQuestionsReducers, + } +}) + +// Infer the type of `store` +export type AppStore = typeof store +// Infer the `AppDispatch` type from the store itself +export type AppDispatch = typeof store.dispatch +// Same for the `RootState` type + +export type RootState = ReturnType + +// Define a reusable type describing thunk functions +export type AppThunk = ThunkAction< + ThunkReturnType, + RootState, + unknown, + Action +> -- cgit v1.2.3