From f8483b0ca7e32ed0644e85be4c418fd35554a41f Mon Sep 17 00:00:00 2001 From: Elena <44652398+elynn21@users.noreply.github.com> Date: Sat, 13 Apr 2019 13:02:59 -0400 Subject: [PATCH] I changed the grammar (#33801) --- guide/english/react/react-router/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/react/react-router/index.md b/guide/english/react/react-router/index.md index 559f55244e..11b6ca5b5d 100644 --- a/guide/english/react/react-router/index.md +++ b/guide/english/react/react-router/index.md @@ -8,7 +8,7 @@ title: React Router React Router has been broken into three packages: `react-router`, `react-router-dom`, and `react-router-native`. -You should almost never have to install react-router directly. That package provides the core routing components and functions for React Router applications. The other two provide environment specific (browser and react-native) components, but they both also re-export all of react-router's exports. +You should almost never have to install react-router directly. The package provides the core routing components and functions for React Router applications. The other two provide environment specific (browser and react-native) components, but they both also re-export all of react-router's exports. We are building a website (something that will be run in browsers), so we will install react-router-dom.