Skip to content
This repository was archived by the owner on Oct 20, 2021. It is now read-only.
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
8 changes: 7 additions & 1 deletion content/react/step08.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ Meteor comes with an accounts system and a drop-in login user interface that let
To enable the accounts system and UI, we need to add the relevant packages. In your app directory, run the following command:

```bash
meteor add accounts-ui accounts-password
meteor add accounts-ui accounts-password jquery
```

For jQuery, you'll also need to install the npm package:

```bash
meteor npm install --save jquery
```

### Wrapping a Blaze component in React
Expand Down