Skip to content

Commit 70c1c5c

Browse files
authored
Merge pull request #3611 from suspiciousRaccoon/fix-rtk-query-store-path
2 parents a46d95a + 7d1d7a5 commit 70c1c5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tutorials/rtk-query.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default function App() {
141141
return <div>...</div>
142142
}
143143

144-
// file: app/store.ts noEmit
144+
// file: store.ts noEmit
145145
import { configureStore } from '@reduxjs/toolkit'
146146

147147
export const store = configureStore({
@@ -154,7 +154,7 @@ import { render } from 'react-dom'
154154
import { Provider } from 'react-redux'
155155

156156
import App from './App'
157-
import { store } from './app/store'
157+
import { store } from './store'
158158

159159
const rootElement = document.getElementById('root')
160160
render(

0 commit comments

Comments
 (0)