├── README.md └── package.json /README.md: -------------------------------------------------------------------------------- 1 | [![Youtube][youtube-shield]][youtube-url] 2 | [![Facebook Page][facebook-shield]][facebook-url] 3 | [![Facebook Group][facebook-shield]][facebook-group-url] 4 | [![Instagram][instagram-shield]][instagram-url] 5 | [![LinkedIn][linkedin-shield]][linkedin-url] 6 | 7 | 8 |
9 |

10 |

Think in a React way Tutorial Series [ in Bangla ]

11 | 12 | 13 | 14 | ## Table of Contents 15 | 16 | - [How to run](#how-to-run) 17 | - [Contact](#contact) 18 | 19 | 20 | 21 | ## How to run 22 | 23 | Different lessons taught in the Youtube Tutorial Series are organized in separate branches. For example, lesson-1 source code is shared in lesson-1 branch. Just switch to a branch and see corresponding README file instruction. 24 | 25 | 26 | 27 | ## Contact 28 | 29 | Sumit Saha - [sumit@learnwithsumit.com](mailto:sumit@learnwithsumit.com) 30 | 31 | Project Link: [https://github.com/learnwithsumit/think-in-a-react-way](https://github.com/learnwithsumit/think-in-a-react-way) 32 | 33 | Youtube Playlist Link: [https://www.youtube.com/playlist?list=PLHiZ4m8vCp9M6HVQv7a36cp8LKzyHIePr](https://www.youtube.com/playlist?list=PLHiZ4m8vCp9M6HVQv7a36cp8LKzyHIePr) 34 | 35 | Youtube Channel: [https://youtube.com/LearnwithSumit](https://youtube.com/LearnwithSumit) 36 | 37 | 38 | 39 | [youtube-shield]: https://img.shields.io/badge/-Youtube-black.svg?style=flat-square&logo=youtube&color=555&logoColor=white 40 | [youtube-url]: https://youtube.com/LearnwithSumit 41 | [facebook-shield]: https://img.shields.io/badge/-Facebook-black.svg?style=flat-square&logo=facebook&color=555&logoColor=white 42 | [facebook-url]: https://facebook.com/letslearnwithsumit 43 | [facebook-group-url]: https://facebook.com/groups/learnwithsumit 44 | [instagram-shield]: https://img.shields.io/badge/-Instagram-black.svg?style=flat-square&logo=instagram&color=555&logoColor=white 45 | [instagram-url]: https://instagram.com/learnwithsumit 46 | [linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square&logo=linkedin&colorB=555 47 | [linkedin-url]: https://linkedin.com/company/learnwithsumit -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "think-in-a-react-way", 3 | "version": "1.0.0", 4 | "description": "All the lessons given regarding React JS in Learn with Sumit React JS Tutorial Series called \"Think in a React way\"", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [ 10 | "learnwithsumit", 11 | "sumit", 12 | "saha" 13 | ], 14 | "author": "Sumit Saha ", 15 | "license": "UNLICENSED" 16 | } 17 | --------------------------------------------------------------------------------