nikhilblogs.comIntroduction to Redux toolkitWhat is Redux toolkit ? Redux Toolkit is an official set of tools that makes using Redux easier. It reduces the extra code you usually have to write and comes with built-in features like createSlice, createAsyncThunk, and configureStore to help manag...Oct 16, 2024·7 min read
nikhilblogs.comBuilding a Draggable Dashboard with React Using react-grid-layout LibraryIn modern web development, creating interactive and responsive dashboards is a common requirement. React, being a popular JavaScript library for building user interfaces, offers a plethora of tools and libraries to accomplish such tasks efficiently. ...Mar 4, 2024·5 min read
nikhilblogs.comHTML:Hyper Text Markup LanguageIntoduction: HTML(Hyper Text Markup Language) is the most basic element that you need while building a website.It defines the layout of the webpage.HTML is not a coding language,it's a scripting language.HTML uses various scripts or tags to define th...Jun 21, 2023·5 min read
nikhilblogs.com"Managing State in React with the useState Hook: A Beginner's Guide"The useState hook is a crucial feature of React that allows developers to manage state within functional components. It was introduced in React 16.8, and it quickly became a popular way of managing state in React applications. In this blog post, we'l...Mar 24, 2023·2 min read