reduxjs / redux

A JS library for predictable global state management
https://redux.js.org
MIT License
60.51k stars 15.26k forks source link

app/store.js export fixed #4695

Closed fahim24 closed 1 month ago

fahim24 commented 1 month ago

export default configureStore({ reducer: { posts: postsReducer, }, }) changed to export const store = configureStore({ reducer: { posts: postsReducer, }, })

Thanks for the PR!

To better assist you, please select the type of PR you want to create.

Click the "Preview" tab above, and click on the link for the PR type:

codesandbox-ci[bot] commented 1 month ago

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

netlify[bot] commented 1 month ago

Deploy Preview for redux-docs ready!

Name Link
Latest commit d93434589a38fc5e0270e128a94af69365ac6c29
Latest deploy log https://app.netlify.com/sites/redux-docs/deploys/660e72dd9c16210008d4d8fe
Deploy Preview https://deploy-preview-4695--redux-docs.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

EskiMojo14 commented 1 month ago

is there any pages in the tutorial that use a named import specifically? the only reference to the store on this page doesn't actually show an import

timdorr commented 1 month ago

Correct, this is fine as-is. Thanks anyway!