From d53caa29410052c0110552ad6ff7ec53b9799dd1 Mon Sep 17 00:00:00 2001 From: Sophie Alpert Date: Thu, 16 Mar 2023 17:32:04 -0700 Subject: [PATCH] fix wording: and and --- beta/src/content/learn/start-a-new-react-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/learn/start-a-new-react-project.md b/beta/src/content/learn/start-a-new-react-project.md index 36123e2b..b0c074f2 100644 --- a/beta/src/content/learn/start-a-new-react-project.md +++ b/beta/src/content/learn/start-a-new-react-project.md @@ -78,7 +78,7 @@ Even if you don't need routing or data fetching at first, you'll likely want to **React frameworks on this page solve problems like these by default, with no extra work from your side.** They let you start very lean and then scale your app with your needs. Each React framework has a community, so finding answers to questions and upgrading tooling is easier. Frameworks also give structure to your code, helping you and others retain context and skills between different projects. Conversely, with a custom setup it's easier to get stuck on unsupported dependency versions, and you'll essentially end up creating your own framework—albeit one with no community or upgrade path (and if it's anything like the ones we've made in the past, more haphazardly designed). -If you're still not convinced, or your app has unusual constraints not served well by these frameworks and you'd like to roll your own custom setup, we can't stop you--go for it! Grab `react` and `react-dom` from npm, and set up your custom build process with a bundler like [Vite](https://vitejs.dev/) or [Parcel](https://parceljs.org/), and add other tools as you need them for routing, static generation or server-side rendering, and more. +If you're still not convinced, or your app has unusual constraints not served well by these frameworks and you'd like to roll your own custom setup, we can't stop you--go for it! Grab `react` and `react-dom` from npm, set up your custom build process with a bundler like [Vite](https://vitejs.dev/) or [Parcel](https://parceljs.org/), and add other tools as you need them for routing, static generation or server-side rendering, and more. ## Bleeding-edge React frameworks {/*bleeding-edge-react-frameworks*/}