2022-03-24 10:08:28 -05:00
|
|
|
import { configureStore } from "@reduxjs/toolkit";
|
2023-03-06 21:26:35 +11:00
|
|
|
import postsReducer from "../features/posts/postsSlice";
|
2023-03-07 13:12:54 +11:00
|
|
|
import usersReducer from "../features/users/usersSlice";
|
2022-03-24 10:08:28 -05:00
|
|
|
|
|
|
|
export const store = configureStore({
|
2023-03-07 13:12:54 +11:00
|
|
|
reducer: { posts: postsReducer, users: usersReducer },
|
2023-03-06 21:26:35 +11:00
|
|
|
});
|