From df9d7d402cd7bf871dceff6f68c81493bf8d221c Mon Sep 17 00:00:00 2001 From: Dalton Craven <20dalton00@gmail.com> Date: Fri, 20 Aug 2021 21:12:02 +0200 Subject: [PATCH] Replace NPM with Yarn in quick start guide (#7966) --- packages/react-router-dom/docs/guides/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-router-dom/docs/guides/quick-start.md b/packages/react-router-dom/docs/guides/quick-start.md index 952f235967..c27535fcb8 100644 --- a/packages/react-router-dom/docs/guides/quick-start.md +++ b/packages/react-router-dom/docs/guides/quick-start.md @@ -14,7 +14,7 @@ cd demo-app You can install React Router from [the public npm registry](https://npm.im/react-router-dom) with either `npm` or [`yarn`](https://yarnpkg.com). Since we're building a web app, we'll use `react-router-dom` in this guide. ```sh -npm install react-router-dom +yarn add react-router-dom ``` Next, copy/paste either of the following examples into `src/App.js`.