props

ReactJS|State

In the previous article on ReactJS|Props  we have talked about What are props? Now What if we want to manage some data inside the component that may change over time. To achieve this React comes with State. Now, what is state? In this article, we will talk about react state in greater detail. What is State? […]

ReactJS|State Read More »

ReactJS|Props

What if we want to pass data from one component to another that’s because we don’t want the component to display static data instead we want to pass dynamic data to the component and render it over the webpage. To achieve this React comes with props. Basically props are used to pass data from component

ReactJS|Props Read More »