1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/app/store.js
Zhiyuan Zheng 4af19d0588 First commit
Public timeline working, with refreshing and load more
2020-10-22 00:47:02 +02:00

15 lines
322 B
JavaScript

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