main
Last change
on this file since 95ce58b was 87614a5, checked in by anastasovv <simon@…>, 2 years ago |
Blackjack prototype
|
-
Property mode
set to
100644
|
File size:
277 bytes
|
Rev | Line | |
---|
[87614a5] | 1 | import { configureStore } from "@reduxjs/toolkit";
|
---|
| 2 |
|
---|
| 3 | import playerReducer from "./reducers/playerSlice";
|
---|
| 4 | import styleReducer from "./reducers/styleSlice";
|
---|
| 5 |
|
---|
| 6 | export const store = configureStore({
|
---|
| 7 | reducer: {
|
---|
| 8 | player: playerReducer,
|
---|
| 9 | style: styleReducer,
|
---|
| 10 | },
|
---|
| 11 | }) |
---|
Note:
See
TracBrowser
for help on using the repository browser.