Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Update Readme.md #230

Open
wants to merge 1 commit into
base: master
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,11 @@ For our purposes, we're going to add two buttons to control the enthusiasm level
To add Redux, we'll first install `redux` and `react-redux`, as well as their types, as a dependency.

```sh
npm install -S redux react-redux @types/react-redux
npm install -S redux react-redux
# npm install @types/react-redux
```

In this case we didn't need to install `@types/redux` because Redux already comes with its own definition files (`.d.ts` files).
In this case we didn't need to install `@types/redux` because Redux already comes with its own definition files (`.d.ts` files), that's why it's commented.

## Defining our app's state

Expand Down