react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
27 lines (24 loc) • 660 B
JavaScript
// ** Toolkit imports
import { configureStore } from '@reduxjs/toolkit'
// ** Reducers
import chat from '~/store/apps/chat'
import user from '~/store/apps/user'
import email from '~/store/apps/email'
import invoice from '~/store/apps/invoice'
import calendar from '~/store/apps/calendar'
import permissions from '~/store/apps/permissions'
// eslint-disable-next-line import/prefer-default-export
export const store = configureStore({
reducer: {
user,
chat,
email,
invoice,
calendar,
permissions
},
middleware: getDefaultMiddleware =>
getDefaultMiddleware({
serializableCheck: false
})
})