From 6c929bf73b57db869e7dd111a62ff2a43d27876c Mon Sep 17 00:00:00 2001 From: "Oscar T." <38195378+oscartorres-10@users.noreply.github.com> Date: 2024年7月25日 10:28:02 -0300 Subject: [PATCH 1/2] refactor(case): use camelCase in "TypeScript" and "ReactJS" improves consistency throughout the document --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3b14742..9c9f91d5 100644 --- a/README.md +++ b/README.md @@ -4821,7 +4821,7 @@ class ParentComponent extends React.Component { **[⬆ Back to Top](#table-of-contents)** 227. ### What is MobX? - MobX is a simple, scalable and battle tested state management solution for applying functional reactive programming (TFRP). For reactJs application, you need to install below packages, + MobX is a simple, scalable and battle tested state management solution for applying functional reactive programming (TFRP). For ReactJs application, you need to install below packages, ```bash npm install mobx --save npm install mobx-react --save @@ -4961,9 +4961,9 @@ class ParentComponent extends React.Component { **[⬆ Back to Top](#table-of-contents)** -235. ### What are the benefits of using typescript with reactjs? +235. ### What are the benefits of using TypeScript with ReactJS? - Below are some of the benefits of using typescript with Reactjs, + Below are some of the benefits of using TypeScript with ReactJS, 1. It is possible to use latest JavaScript features 2. Use of interfaces for complex type definitions @@ -7109,7 +7109,7 @@ Technically it is possible to write nested function components but it is not sug npx create-react-app my-app --template typescript ``` - But if you are using React Scripting between react-scripts@2.1.0 and react-scripts@3.2.x , there is a built-in support for typescript. i.e, `create-react-app` now supports typescript natively. You can just pass `--typescript` option as below + But if you are using React Scripting between react-scripts@2.1.0 and react-scripts@3.2.x , there is a built-in support for TypeScript. i.e, `create-react-app` now supports TypeScript natively. You can just pass `--typescript` option as below ```bash npx create-react-app my-app --typescript From 10f85571e4b0386248d2ce1f2ca405498aa4b607 Mon Sep 17 00:00:00 2001 From: "Oscar T." <38195378+oscartorres-10@users.noreply.github.com> Date: 2024年7月25日 10:31:15 -0300 Subject: [PATCH 2/2] refactor(case): add upper case for "JS" in "ReactJS" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c9f91d5..a4ce3e10 100644 --- a/README.md +++ b/README.md @@ -4821,7 +4821,7 @@ class ParentComponent extends React.Component { **[⬆ Back to Top](#table-of-contents)** 227. ### What is MobX? - MobX is a simple, scalable and battle tested state management solution for applying functional reactive programming (TFRP). For ReactJs application, you need to install below packages, + MobX is a simple, scalable and battle tested state management solution for applying functional reactive programming (TFRP). For ReactJS application, you need to install below packages, ```bash npm install mobx --save npm install mobx-react --save