Skip to content

Commit

Permalink
Merge pull request #3611 from suspiciousRaccoon/fix-rtk-query-store-path
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Dec 6, 2023
2 parents a46d95a + 7d1d7a5 commit 70c1c5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/rtk-query.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default function App() {
return <div>...</div>
}

// file: app/store.ts noEmit
// file: store.ts noEmit
import { configureStore } from '@reduxjs/toolkit'

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

import App from './App'
import { store } from './app/store'
import { store } from './store'

const rootElement = document.getElementById('root')
render(
Expand Down

0 comments on commit 70c1c5c

Please sign in to comment.