Skip to content

Commit f4f63f4

Browse files
authored
Add "Create a React Redux App" to quick start (#419)
* Add "Create a React Redux App" to quick start * Remove bold formatting for consistency * Adjust wording regarding Redux Toolkit
1 parent d2f2a51 commit f4f63f4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/introduction/quick-start.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ yarn add @reduxjs/toolkit
4848
It is also available as a precompiled UMD package that defines a `window.RTK` global variable.
4949
The UMD package can be used as a [`<script>` tag](https://unpkg.com/@reduxjs/toolkit/dist/redux-toolkit.umd.js) directly.
5050

51+
## Create a React Redux App
52+
53+
The recommended way to start new apps with React and Redux Toolkit is by using the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux) for [Create React App](https://github.com/facebook/create-react-app), which takes advantage of React Redux's integration with React components.
54+
55+
```sh
56+
npx create-react-app my-app --template redux
57+
cd my-app
58+
npm start
59+
```
60+
5161
## Help and Discussion
5262

5363
The **[#redux channel](https://discord.gg/0ZcbPKXt5bZ6au5t)** of the **[Reactiflux Discord community](http://www.reactiflux.com)** is our official resource for all questions related to learning and using Redux. Reactiflux is a great place to hang out, ask questions, and learn - come join us!

0 commit comments

Comments
 (0)