From 18fab4b2947a7b7bfca60eb6843070d0dbe3216c Mon Sep 17 00:00:00 2001 From: Rodrigo Negrete Date: Sun, 24 Mar 2024 15:41:18 -0500 Subject: [PATCH] TypeScript docs store export --- docs/tutorials/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,