ReactJs

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 »

ReactJS|Introduction to JSX

In this article we will talk about what is JSX and why do we need JSX in react applications.We will also talk about basics of JSX and how to work with JSX . What is JSX? JSX (JavaScript XML) is an XML-like syntax extension of JavaScript. Here “syntax extension” means that JSX is not valid Javascript.

ReactJS|Introduction to JSX Read More »

ReactJS|Creating First React Component

In this article we will talk about what is component and how to create our first react component with simple example. React applications are made out of components.Components let you split the entire application into independent, reusable pieces which can then be composed together to form complex UI.   What is component? A component is a

ReactJS|Creating First React Component Read More »

ReactJS|Application folder structure

React Folder Structure In this article we will talk about the folder structure of react application.If you want to know what is react and how to create react application go to my previous article React Introduction and Creating react app. When we run the command in our terminal to create react application the following initial

ReactJS|Application folder structure Read More »

ReactJS| Introduction and Creating react app

What Is React? React is an open source Javascript library for building fast and interactive applications.This library is mainly used for building the UI or view of our application.The beauty of react is that because its just the view it doesn’t necessarily mean that it’s only for web applications. It can be used with mobile

ReactJS| Introduction and Creating react app Read More »