import { configureStore } from "@reduxjs/toolkit"; import appReducer from "./slices/app.slice"; export const store = configureStore({ reducer: { app: appReducer, }, }); // Export các type dùng trong app export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch;