Tag: React

useDeferredValue in React – Importance, Use Cases, and Examples

When working with modern React apps, performance plays a big role. Sometimes components re-render too often and cause lag in your app. React introduced useDeferredValue to... Read more »

React JS: Create utility functions formatting currency

How to format currency in React JS App. Create Utility functions in React app for formating the currency data for shopping cart apps etc.... Read more »

HTML to React App — Convertion Steps

Create React App npx create-react-app app-name cd  app-name npm start Steps of conversion Copy paste css to index.cssCopy paste contents inside <body> to App.js  return dataReplace "class" with "className" ... Read more »