Skip to content

Commit 55f7288

Browse files
Merge pull request #49327 from v-thpra/azure-triage-fix-1033683
Fix for Customer Feedback 1033683: Possible format error in 8-project-from-scratch in React training
2 parents 5c0aea6 + 487da56 commit 55f7288

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

learn-pr/language/react-get-started/includes/8-project-from-scratch.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Our core setup has two main folders that store code:
1515
- Contains any files that need to be rendered
1616
- Stores all *.jsx* files
1717

18-
We'll also create two files to configure our application:
18+
We also create two files to configure our application:
1919

2020
- **package.json**: Contains the list of packages and scripts for our application
2121
- **snowpack.config.js**: Contains configuration options for Snowpack
@@ -56,7 +56,7 @@ In an empty directory, start by installing the necessary components by using npm
5656
```
5757

5858
> [!NOTE]
59-
> Snowpack is a *dev dependency*. That is, it's not required for production because it generates the necessary JavaScript and HTML files during the build process.
59+
> Snowpack is a *dev dependency*. It isn't required for production because it generates the necessary JavaScript and HTML files during the build process.
6060
6161
1. Open the directory in Visual Studio Code by running the following command.
6262
@@ -66,11 +66,11 @@ In an empty directory, start by installing the necessary components by using npm
6666
6767
## Set up Snowpack
6868
69-
One of the advantages of a tool like Snowpack is that it's mostly self-configuring. However, we do need to indicate our code's folder structure. To indicate the folder structure, we set options in the *snowpack.config.js* file.
69+
One of the advantages of a tool like Snowpack is that it's mostly self-configuring. However, we do need to indicate our code's folder structure. To indicate the folder structure, we set options in the `snowpack.config.js` file.
7070
7171
1. In Visual Studio Code, create a new file by selecting **File** > **New File**.
7272
73-
1. Name the file *snowpack.config.js*.
73+
1. Name the file `snowpack.config.js`.
7474
7575
1. In the new file, add the following code.
7676
@@ -83,15 +83,15 @@ One of the advantages of a tool like Snowpack is that it's mostly self-configuri
8383
}
8484
```
8585
86-
This code tells Snowpack to use our *public* folder as the root of the application. It also sets the *src* directory as the virtual location for the JavaScript files and HTML files it will generate.
86+
This code tells Snowpack to use our *public* folder as the root of the application. It also sets the *src* directory as the virtual location for the JavaScript files and HTML files it generates.
8787
8888
## Create the npm scripts
8989
90-
To support our development work, we'll use two scripts with Snowpack. The first script starts the development server. This action automatically refreshes our page when we modify our application. The second script is used when we're ready to build all our files for deployment.
90+
To support our development work, we use two scripts with Snowpack. The first script starts the development server. This action automatically refreshes our page when we modify our application. The second script is used when we're ready to build all our files for deployment.
9191

9292
1. In Visual Studio Code, open the *package.json* file.
9393

94-
1. At the bottom of the file, above the last curly bracket (`}`), add the following code. This code creates the start and build scripts.
94+
1. At the bottom of the file, above the last curly bracket (`}`), add the following code. This code creates the **start** and **build** scripts.
9595

9696
```json
9797
{
@@ -122,4 +122,4 @@ To support our development work, we'll use two scripts with Snowpack. The first
122122

123123
1. Save all files by selecting **File** > **Save all**.
124124

125-
You have now set up your starter project! You can add *index.html*, *App.jsx*, and other files just as you did in the previous units.
125+
Your starter project is now set up! You can add *index.html*, *App.jsx*, and other files just as you did in the previous units.

0 commit comments

Comments
 (0)