From 45e980d1abc938c7bc882241bc345090cd0e976e Mon Sep 17 00:00:00 2001 From: Bryson Hotopp Date: Mon, 15 Nov 2021 11:23:23 -0600 Subject: [PATCH] Remove `history@5` from installation examples (#8337) --- docs/getting-started/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 15284d42b..372105977 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -21,7 +21,7 @@ Most modern React projects manage their dependencies using a package manager lik npm ```sh -$ npm install history@5 react-router-dom@6 +$ npm install react-router-dom@6 ``` @@ -30,7 +30,7 @@ $ npm install history@5 react-router-dom@6 Yarn ```sh -$ yarn add history@5 react-router-dom@6 +$ yarn add react-router-dom@6 ``` @@ -39,7 +39,7 @@ $ yarn add history@5 react-router-dom@6 pnpm ```sh -$ pnpm add history@5 react-router-dom@6 +$ pnpm add react-router-dom@6 ```