diff --git a/docs/tutorials/typescript.md b/docs/tutorials/typescript.md index ca45f678e3..acedfb5914 100644 --- a/docs/tutorials/typescript.md +++ b/docs/tutorials/typescript.md @@ -44,7 +44,7 @@ Since those are types, it's safe to export them directly from your store setup f import { configureStore } from '@reduxjs/toolkit' // ... -const store = configureStore({ +export const store = configureStore({ reducer: { posts: postsReducer, comments: commentsReducer,