From a54bb4ee459d6530bf685c752fe2202c680b42f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CClatron=E2=80=9D?= <“bariskaya1516@gmail.com”> Date: Sat, 12 Apr 2025 00:03:15 +0300 Subject: [PATCH] docs: fix a typo in the docs --- src/content/learn/creating-a-react-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/creating-a-react-app.md b/src/content/learn/creating-a-react-app.md index fc6c956d4a8..e51ec8b639f 100644 --- a/src/content/learn/creating-a-react-app.md +++ b/src/content/learn/creating-a-react-app.md @@ -106,7 +106,7 @@ If your app has constraints not well-served by existing frameworks, you prefer t Starting from scratch gives you more flexibility, but does require that you make choices on which tools to use for routing, data fetching, and other common usage patterns. It's a lot like building your own framework, instead of using a framework that already exists. The [frameworks we recommend](#full-stack-frameworks) have built-in solutions for these problems. -If you want to build your own solutions, see our guide to [build a React app from Scratch](/learn/build-a-react-app-from-scratch) for instructions on how to set up a new React project starting with a built tool like [Vite](https://vite.dev/), [Parcel](https://parceljs.org/), or [RSbuild](https://rsbuild.dev/). +If you want to build your own solutions, see our guide to [build a React app from Scratch](/learn/build-a-react-app-from-scratch) for instructions on how to set up a new React project starting with a build tool like [Vite](https://vite.dev/), [Parcel](https://parceljs.org/), or [RSbuild](https://rsbuild.dev/). -----