source: redux/store.js@ 4a1a3ca

main
Last change on this file since 4a1a3ca was 87614a5, checked in by anastasovv <simon@…>, 2 years ago

Blackjack prototype

  • Property mode set to 100644
File size: 277 bytes
Line 
1import { configureStore } from "@reduxjs/toolkit";
2
3import playerReducer from "./reducers/playerSlice";
4import styleReducer from "./reducers/styleSlice";
5
6export const store = configureStore({
7 reducer: {
8 player: playerReducer,
9 style: styleReducer,
10 },
11})
Note: See TracBrowser for help on using the repository browser.