Orerview: React Suspense is a component that allows developers to handle the loading state of certain components in a declarative manner. It allows developers to define a fallback component that will be displayed while the component is loading. To use React Suspense in a functional component, you can import the Suspense component from the ‘react’ […]
React
React useState Hook
React’s useState hook is a built-in hook that allows you to add state to your functional components. State is a way to store and manage data that can change over time, such as user input, the current time, or the result of an API call. useState is a hook that takes one argument, an initial […]
Top 10 ReactJS Best Practices to follow when developing React Application
By following these best practices, you can help ensure that your ReactJS application is maintainable, scalable and performant.
Using CRA a development workflow tool in ReactJS
Using a development workflow tool is a best practice in ReactJS development. It can help streamline the development process and make it easier to get started with a new project. One of the most popular development workflow tools for React is Create React App (CRA). It is a command line tool that helps you to […]
Using code-splitting and lazy loading in ReactJS development
Introduction: Using code-splitting and lazy loading is a best practice in ReactJS development. It can help improve the performance of your application by only loading the code that is needed for the current page. Code-splitting is the process of separating your code into smaller chunks, so that the browser only has to download the code […]
Why we should write Test cases for react components?
Introduction: Writing tests for your components is a best practice in ReactJS development. It can help ensure that your code is working as expected and that changes won’t break existing functionality. There are several testing frameworks available for React, such as Jest, Enzyme, and React Testing Library. Each framework has its own set of features […]