Skip to content

Commit 63e7fff

Browse files
authored
Merge pull request #5344 from selbekk/clean-up-getting-started-page
Add some headings to the getting started section
2 parents bc1b021 + c17858f commit 63e7fff

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

docusaurus/docs/getting-started.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ title: Getting started
44
sidebar_label: Getting started
55
---
66

7-
## Quick Overview
7+
Create React App is an officially supported way to create single-page React
8+
applications. It offers a modern build setup with no configuration.
9+
10+
## Quick Start
811

912
```sh
1013
npx create-react-app my-app
@@ -58,7 +61,9 @@ yarn create react-app my-app
5861

5962
_`yarn create` is available in Yarn 0.25+_
6063

61-
It will create a directory called `my-app` inside the current folder.<br>
64+
## Output
65+
66+
Running either of these commands will create a directory called `my-app` inside the current folder.<br>
6267
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
6368

6469
```
@@ -88,6 +93,8 @@ Once the installation is done, you can open your project folder:
8893
cd my-app
8994
```
9095

96+
## Scripts
97+
9198
Inside the newly created project, you can run some built-in commands:
9299

93100
### `npm start` or `yarn start`
@@ -114,6 +121,6 @@ By default, runs tests related to files changed since the last commit.
114121
Builds the app for production to the `build` folder.<br>
115122
It correctly bundles React in production mode and optimizes the build for the best performance.
116123

117-
The build is minified and the filenames include the hashes.<br>
124+
The build is minified and the filenames include the hashes.
118125

119126
Your app is ready to be deployed.

0 commit comments

Comments
 (0)