initial commit

This commit is contained in:
Alex Zinn
2025-08-31 16:52:20 -04:00
commit b6717e0cb1
61 changed files with 4192 additions and 0 deletions

7
src/store/store.ts Normal file
View File

@@ -0,0 +1,7 @@
import {configureStore} from '@reduxjs/toolkit';
import reducer from './reducer';
import phenixWebSocketMiddleware from './middlewares/PhenixWebSocket.middleware';
export const store = configureStore({reducer, middleware: getDefaultMiddleware => getDefaultMiddleware().concat(phenixWebSocketMiddleware)});
export type RootState = ReturnType<typeof store.getState>;