Skip to content

Instantly share code, notes, and snippets.

@victorbruce
Created October 24, 2022 09:05
Show Gist options
  • Save victorbruce/61177690c48b84b8535396c148db727e to your computer and use it in GitHub Desktop.
Save victorbruce/61177690c48b84b8535396c148db727e to your computer and use it in GitHub Desktop.
Configuring a Redux store.
import { configureStore } from "@reduxjs/toolkit"
export const store = configureStore({
reducer: {
// reference reducers here
}
})
// create types for state and dispatch
export type RootState = ReturnType<typeof store.getState>
export type AppDispatch = typeof store.dispatch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment