Tag: react

  • Building Draggable Components in React

    Building Draggable Components in React

    As user interaction becomes more prevalent in today’s applications, sometimes it’s nice to use draggable elements in your apps. Consider website builders like Trello or Wix. They have drag-and-drop features that make it easy and convenient for users. Hello everyone! In this article, I will show some simple ways to create draggable components in React […]

  • How To Bind Event Handlers With this Keyword In React

    Event Handling is one of the important features of React. It is important to bind the event handlers with this keyword so that they can get the correct access to this keyword in the class component itself. In this blog, we will discuss the different ways through which we can bind event handlers with this. […]

  • How To Set Up a React Project with Vite?

    Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects. It consists of two major parts: Vite is opinionated and comes with sensible defaults out of the box, but it is also highly extensible via its Plugin API and JavaScript API with full typing support. Introduction  […]

  • Voting App Using React Redux

    Redux provides an easy way to centralize the state of your application. There are three basic properties to know in Redux. Action, Store, Reducer. We will cover all these properties one by one. The Redux Cycle The redux cycle is composed of Action, Store and Reducers. Action is like a message that we send or […]