From b0a14b240ab7468cdec8565902d230b573296c98 Mon Sep 17 00:00:00 2001 From: Wase-Zahin Date: Mon, 13 May 2024 20:33:05 +0800 Subject: [PATCH] fix: fix typo --- docs/tutorials/quick-start.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/quick-start.mdx b/docs/tutorials/quick-start.mdx index eedafecc7b..7f26aec087 100644 --- a/docs/tutorials/quick-start.mdx +++ b/docs/tutorials/quick-start.mdx @@ -49,7 +49,7 @@ npm install @reduxjs/toolkit react-redux Create a file named `src/app/store.js`. Import the `configureStore` API from Redux Toolkit. We'll start by creating an empty Redux store, and exporting it: -```ts title="app/store.js" +```ts title="app/store.ts" import { configureStore } from '@reduxjs/toolkit' export const store = configureStore({ @@ -303,4 +303,4 @@ Here's the complete counter application as a running CodeSandbox: ## What's Next? -We recommend going through [**the "Redux Essentials" and "Redux Fundamentals" tutorials in the Redux core docs**](https://redux.js.org/tutorials/index), which will give you a complete understanding of how Redux works, what Redux Toolkit does, and how to use it correctly. +We recommend going through [**the "Redux Essentials" and "Redux Fundamentals" tutorials in the Redux core docs**](https://redux.js.org/tutorials/index), which will give you a complete understanding of how Redux works, what Redux Toolkit does, and how to use it correctly. \ No newline at end of file