added orai

This commit is contained in:
szabomarton
2025-03-13 10:04:04 +01:00
parent 5092aedfca
commit 98b119aa96
9 changed files with 410 additions and 1367 deletions

View File

@@ -0,0 +1,11 @@
import {configureStore} from "@reduxjs/toolkit";
import counterReducer from "../components/CounterSlice";
export const store = configureStore({
reducer: {
counter: counterReducer,
},
});
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;