diff --git a/content/react/step08.md b/content/react/step08.md index 75a955c..0f4efa7 100644 --- a/content/react/step08.md +++ b/content/react/step08.md @@ -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