zjowowen's picture
init space
079c32c
raw
history blame
No virus
168 Bytes
import { configureStore } from '@reduxjs/toolkit';
import gameReducer from './gameSlice';
export default configureStore({
reducer: {
game: gameReducer,
},
});