diff options
| author | Max Nanis | 2026-03-02 06:33:59 -0500 |
|---|---|---|
| committer | Max Nanis | 2026-03-02 06:33:59 -0500 |
| commit | dec4f45c0755f65a322f6c66833c711dec2c6abb (patch) | |
| tree | 0cadd7e8274f0694b4891816f49ac4a0a6529014 /jb-ui/src/store.ts | |
| parent | 19a97da80ae740bb1cf92fc911e6efc210aa05a8 (diff) | |
| download | amt-jb-dec4f45c0755f65a322f6c66833c711dec2c6abb.tar.gz amt-jb-dec4f45c0755f65a322f6c66833c711dec2c6abb.zip | |
grlEventsReducers, EventMarquee, and workin on calc speed and animations from redux (rather than example's array)
Diffstat (limited to 'jb-ui/src/store.ts')
| -rw-r--r-- | jb-ui/src/store.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jb-ui/src/store.ts b/jb-ui/src/store.ts index 24f1654..7b4d3e3 100644 --- a/jb-ui/src/store.ts +++ b/jb-ui/src/store.ts @@ -1,5 +1,6 @@ import appReducers from "@/models/appSlice" import grlStatsReducers from "@/models/grlStatsSlice" +import grlEventsReducers from "@/models/grlEventsSlice" import profilingQuestionsReducers from "@/models/profilingQuestionsSlice" import type { Action, ThunkAction } from '@reduxjs/toolkit' import { configureStore } from '@reduxjs/toolkit' @@ -9,6 +10,7 @@ export const store = configureStore({ reducer: { app: appReducers, stats: grlStatsReducers, + events: grlEventsReducers, profilingQuestions: profilingQuestionsReducers, } }) |
