Initial commit

This commit is contained in:
Krisztu
2026-02-25 09:17:51 +01:00
commit dd7afe755d
18 changed files with 10091 additions and 0 deletions

11
store/store.ts Normal file
View File

@@ -0,0 +1,11 @@
import { configureStore } from '@reduxjs/toolkit';
import authReducer from './authSlice';
export const store = configureStore({
reducer: {
auth: authReducer,
},
});
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;