Skip to content

Instantly share code, notes, and snippets.

@victorbruce
Created October 25, 2022 08:24
Show Gist options
  • Save victorbruce/83dfb6c6306cb61ae8ed2cdfe0aa843e to your computer and use it in GitHub Desktop.
Save victorbruce/83dfb6c6306cb61ae8ed2cdfe0aa843e to your computer and use it in GitHub Desktop.
adding a reducer to a store
import { configureStore } from "@reduxjs/toolkit"
import noteReducer from "slice"
export const store = configureStore({
reducer: {
notes: noteReducer
}
})
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