Skip to content

Commit e3a1ea9

Browse files
author
Sabbir Ahmed
authored
Merge pull request #982 from nsourov/update-react-command
Add command to create react app in typescript
2 parents 3ac966a + 677a943 commit e3a1ea9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

data/react-cheat-sheet.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"definition": "npx এর সাহায্যে নতুন একটা রিআ্যাক্ট প্রোজেক্ট তৈরী করতে",
1313
"code": "npx create-react-app <project-name>"
1414
},
15+
{
16+
"definition": "npx এর সাহায্যে Typescript দিয়ে নতুন একটা রিআ্যাক্ট প্রোজেক্ট তৈরী করতে",
17+
"code": "npx create-react-app <project-name> --template typescript"
18+
},
1519
{
1620
"definition": "npx এর সাহায্যে প্রজেক্ট নাম ছাড়া রিআ্যাক্ট প্রোজেক্ট তৈরী করতে",
1721
"code": "npx create-react-app . "
@@ -23,6 +27,10 @@
2327
{
2428
"definition": "yarn এর সাহায্যে নতুন একটা রিআ্যাক্ট প্রোজেক্ট তৈরী করতে",
2529
"code": "yarn create react-app <project-name>"
30+
},
31+
{
32+
"definition": "yarn এর সাহায্যে Typescript দিয়ে নতুন একটা রিআ্যাক্ট প্রোজেক্ট তৈরী করতে",
33+
"code": "yarn create react-app <project-name> --template typescript"
2634
}
2735
]
2836
},

0 commit comments

Comments
 (0)