1
0
mirror of https://github.com/tooot-app/app synced 2024-12-31 19:57:30 +01:00
tooot/app/store.js

15 lines
322 B
JavaScript
Raw Normal View History

import { configureStore } from '@reduxjs/toolkit'
import timelineReducer from '../screens/timelineSlice'
export default configureStore({
reducer: {
timeline: timelineReducer
},
middleware: getDefaultMiddleware =>
getDefaultMiddleware({
immutableCheck: false,
serializableCheck: false
})
})