diff --git a/guide/english/react/react-router/index.md b/guide/english/react/react-router/index.md index e9b9ba1a65..8b9f7f0872 100644 --- a/guide/english/react/react-router/index.md +++ b/guide/english/react/react-router/index.md @@ -14,7 +14,7 @@ We are building a website (something that will be run in browsers), so we will i `npm install --save react-router-dom` ### The Router -When starting a new project, you need to determine which type of router to use. For browser based projects, there are and components. The `` should be used when you have a server that will handle dynamic requests (knows how to respond to any possible URI), while the should be used for static websites (where the server can only respond to requests for files that it knows about). +When starting a new project, you need to determine which type of router to use. For browser-based projects, there are and components. The `` should be used when you have a server that will handle dynamic requests (knows how to respond to any possible URI), while the should be used for static websites (where the server can only respond to requests for files that it knows about). Usually it is preferable to use a ``, but if your website will be hosted on a server that only serves static files, then the `` is a good solution.