File size: 168 Bytes
079c32c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { configureStore } from '@reduxjs/toolkit';
import gameReducer from './gameSlice';

export default configureStore({
  reducer: {
    game: gameReducer,
  },
});