Posts

Showing posts from April, 2023

React Blog Post II

Image
Recap In the last blog https://harshitpatel2002.github.io/ we have covered the basic concepts about ReactJS. We had gone through props, state, lifecycle, structure of the app and many more. But what if I told you that still the things I taught you are not enough to build advance apps. You must be wondering, now what else to learn. Don’t worry I got you. In this blog we will go through the demo project which will tell you how to use the concepts we have learn and to put all the things together. Not only this but also the demo will also show you how to maintain a proper folder structure . So, lets dig in the project Bootstrap It is basically a CSS framework used for building UI faster. To save time we have used this in our application. It basically provides us with the classes to do things. Because this is not a design tutorial, we won't be focusing on the UI/UX. E.g. d-flex is a class in bootstap which make the element flex .  To read its documentation, visit   h...