rename websocket directory to websocket-chat

This commit is contained in:
2025-10-01 07:51:50 -04:00
parent a762bed15c
commit e63615eb46
70 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {configureStore} from '@reduxjs/toolkit';
import {userSlice} from './slices';
// Configure the main store
const store = configureStore({
reducer: {
// Add the reducer from your slice to the store
user: userSlice.reducer
}
});
export default store;
// Type definition for the root state, can be used with useSelector hook
export type RootState = ReturnType<typeof store.getState>;
// Type definition for dispatch, can be used with useDispatch hook
export type AppDispatch = typeof store.dispatch;