From abc04ff1ff9db78dc76b435d076f8f6cbbbae5ab Mon Sep 17 00:00:00 2001 From: Kushang Shah Date: Sat, 1 May 2021 11:48:16 +0530 Subject: [PATCH] More readable --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0b9673ed..0a4a17c7 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,19 @@ The official and very exhaustive Redux documentation is available [here](http:// It is required for you to know a bit of ES6 and ES7 (Object Spread) to correctly understand some of the examples given in this repo. Also be aware that this tutorial targets redux 3.0.2 and react-redux 4.0.0. ### Clone the repository -`git clone https://github.com/happypoulp/redux-tutorial.git` +``` +git clone https://github.com/happypoulp/redux-tutorial.git +``` ### Move into repository -`cd redux-tutorial` +``` +cd redux-tutorial +``` ### Install dependencies -`npm install` +``` +npm install +``` ### Browse the tutorial @@ -27,6 +33,8 @@ Start with the first tutorial: [Introduction](00_introduction.js) Being real js files, each example can be run to verify that it works as intended or to do your own experiments: -`npm run example 01_simple-action-creator.js` +``` +npm run example 01_simple-action-creator.js +``` Enjoy!