Ever wish your app could remember things like a user’s theme choice, preferences, or other settings, even after a page reload? Good news: it absolutely can! With Recoil, your trusty state management tool, and localStorage, the browser’s built-in memory, you can easily persist your app’s state. That means no more resetting the theme or losing […]
Muskan Sheikh
Muskan Sheikh is a UI developer at Perficient, specializing in React and Drupal projects. With a strong passion for front-end development, she consistently strives to create intuitive and user-friendly interfaces. Muskan is driven by a deep curiosity to explore new technologies and is always seeking opportunities to enhance her technical expertise.
Blogs from this Author
Unlocking the Potential of Recoil: Essential Recoil Hooks Every React Developer Should Know
If you are enjoying using React but find managing state tricky, you need to know about Recoil hooks. They’re made for React developers who want a simpler, more powerful way to handle the state. Let’s jump in and see how it works! First, we will look at what hooks are in React and their basic […]
Redux vs Zustand: A Quick Comparison
Imagine you’re in a library. Redux is like a huge, well-organized library where every book is perfectly categorized, labeled, and placed in its specific spot. It’s ideal for a massive collection, but getting everything in order can take a lot of time. Zustand, on the other hand, is like a comfy reading corner with just […]
State Management in React with MobX
Imagine a world where state management is as simple as it should be. MobX lets you build reactive UIs with zero fuss. Using reactive programming, MobX automatically keeps your UI in sync with your app’s state. There is no need for the boilerplate chaos of actions and reducers. With just a few lines of code, […]
State Management in React with Recoil
Have you ever created a React application and ended up struggling with tangled state updates, excessive prop drilling, or overly complex context setups? You’re definitely not alone! As your app scales, managing the state in React can become quite tricky. This is where Recoil comes to the rescue, a powerful new library designed to streamline […]
Introduction to State Handling Excellence in React- A Developer’s Perspective
Handling an application’s state, or state management, plays an essential role in creating dynamic and responsive user interfaces and effectively executing business logic. React offers numerous state management methods for storing and updating data, making it a popular web development technology. Think of it like different ice cream flavors: some people like chocolate (Redux), some […]
Enhancing TypeScript Code with Generics
In this blog, we will explore generics in TypeScript, but before diving into generics, let’s first understand what TypeScript is and why TypeScript has become increasingly popular in the software development industry. So, what is TypeScript? TypeScript, as a free and open-source high-level programming language, acts as a superset of JavaScript by introducing features like […]
Setting up the Component Form Builder in Site Studio
In the last blog, we get to know about how to create a component in the site studio. In this blog, we are going to set up the component form builder for the component. You can improve specific functionalities or enhance the visual appearance of your site by using component form builder. The component form […]
How to Create a Component in Site Studio
Site Studio is a Drupal product from Acquia which builds a low-code and component-based website with a simple drag-and-drop interface. So, what is a component? Components are the mini templates to provide a flexible layout system to customize each section on the page as per requirements. This can be used by site builders in pages […]