Skip to content

Commit

Permalink
Fix store path
Browse files Browse the repository at this point in the history
  • Loading branch information
suspiciousRaccoon committed Jul 22, 2023
1 parent 2b549dd commit 7d1d7a5
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 7d1d7a5

Please sign in to comment.