From f665dfb50b81e26e492136d388df97f4100cfb9f Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Fri, 12 Aug 2022 16:27:29 +0400 Subject: [PATCH] Add content for create-react-app --- .../100-react-fundamental-topics/100-create-react-app.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/103-react/content/100-react-fundamental-topics/100-create-react-app.md b/content/roadmaps/103-react/content/100-react-fundamental-topics/100-create-react-app.md index 5f9ea57a9..a23a43785 100644 --- a/content/roadmaps/103-react/content/100-react-fundamental-topics/100-create-react-app.md +++ b/content/roadmaps/103-react/content/100-react-fundamental-topics/100-create-react-app.md @@ -1 +1,8 @@ -# Create react app \ No newline at end of file +# Create React App + +Create React App is the CLI based tool and is the best way to start building a new single-page application in React. + +It sets up your development environment so that you can use the latest JavaScript features, provides a nice developer experience, and optimizes your app for production. You’ll need to have Node >= 14.0.0 and npm >= 5.6 on your machine. + +Free Content +Official Website