Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1

Open
wants to merge 1 commit into
base: part-time
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const rootReducer = combineReducers({

In the root of your __src__ directory, open your __main.jsx__ file. Below your
import for `ReactDOM`, import the `Provider` component from `react-redux`. Below
the import for the __index.css__ file, import `configureStore` from `./store`.
the import for the __index.css__ file, import `configureStore` from `./store/store`.
Remember, it is a `default export`. Beneath the imports, create a variable
called `store` and invoke the `configureStore` function that you defined in your
__store/store.js__ file.
Expand All @@ -87,7 +87,7 @@ import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import App from './App';
import './index.css';
import configureStore from './store';
import configureStore from './store/store';

const store = configureStore();

Expand Down