From 8f89578d2d6ac0e25639528741c25fe444b35a0a Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Thu, 28 Jun 2018 16:42:02 +0100 Subject: [PATCH] Make recommendations clearer --- content/docs/create-a-new-react-app.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/create-a-new-react-app.md b/content/docs/create-a-new-react-app.md index d9703581..43411e1f 100644 --- a/content/docs/create-a-new-react-app.md +++ b/content/docs/create-a-new-react-app.md @@ -29,10 +29,10 @@ This is also the best way to integrate React into an existing website. You can a The React team primarily recommends these solutions: -- [Create React App](#create-react-app) (best for [single-page](/docs/glossary.html#single-page-application) apps) -- [Next.js](#nextjs) (best for Node.js apps) -- [Gatsby](#gatsby) (best for static websites) -- [More Flexible Toolchains](#more-flexible-toolchains) +- If you're **learning React** or **creating a new [single-page](/docs/glossary.html#single-page-application) app,** use [Create React App](#create-react-app). +- If you're building a **server-rendered website with Node.js,** try [Next.js](#nextjs). +- If you're building a **static content-oriented website,** try [Gatsby](#gatsby). +- If you're building a **component library** or **integrating with an existing codebase**, try [More Flexible Toolchains](#more-flexible-toolchains). ### Create React App