You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/tutorials/calling-widget/calling-widget-tutorial.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,17 +47,18 @@ Only use this step if you're creating a new application.
47
47
To set up the react App, we use the `create-react-app` command line tool. This tool
48
48
creates an easy to run TypeScript application powered by React.
49
49
50
-
To make sure that you have Node installed on your machine run this command in powershell or terminal to see your Node version
50
+
To make sure that you have Node installed on your machine, run this command in PowerShell or the terminal to see your Node version:
51
+
51
52
```bash
52
53
node -v
53
54
```
54
55
55
-
If you do not have `create-react-app` installed on your machine run the following to install it as a global command
56
+
If you don't have `create-react-app` installed on your machine, run the following command to install it as a global command:
56
57
57
58
```bash
58
59
npm install -g create-react-app
59
60
```
60
-
Once that is installed run this next command to create a new react application to build the sample in.
61
+
After that command is installed, run this next command to create a new react application to build the sample in:
61
62
62
63
```bash
63
64
# Create an Azure Communication Services App powered by React.
@@ -69,7 +70,7 @@ cd ui-library-calling-widget-app
69
70
70
71
### Get your dependencies
71
72
72
-
Then you need to update the dependency array in the `package.json` to include some packages from Azure Communication Services for the widget experience we're going to build to work:
73
+
Then, you need to update the dependency array in the `package.json` to include some packages from Azure Communication Services for the widget experience we're going to build to work:
73
74
74
75
```json
75
76
"@azure/communication-calling": "1.22.1",
@@ -81,7 +82,7 @@ Then you need to update the dependency array in the `package.json` to include so
81
82
"@fluentui/react": "~8.98.3",
82
83
```
83
84
84
-
Once you add these packages to your `package.json`, you’re all set to start working on your new project. In this tutorial, we are modifying the files in the `src` directory.
85
+
After you add these packages to your `package.json`, you're all set to start working on your new project. In this tutorial, we are modifying the files in the `src` directory.
0 commit comments