You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docs: Minor tweaks to advanced/ExampleRedditAPI.md
Three changes:
1. Removed ```combineReducers``` from ```import``` statement under configureStore.js (combineReducers is not used there)
2. The file names listed on this page seem to indicate that reducers.js and actions.js are in the same directory, so I changed the relative path of the import statement in reducers.js to match this. (from ```"../actions"``` to ```"./actions"```).
3. Same issue as number 2 above: configureStore.js and reducers.js seem to be in the same directory, so I changed the relative path of the import statement in configureStore.js to match this (from ```"../reducers"``` to ```"./reducers"```).
0 commit comments