© 2023 Hashnode
#react
In large-scale React applications, it's common to have to pass props down multiple levels of components. This can lead to "prop drilling," which can make the codebase harder to maintain and debug. Rea…
This article is a beginner-friendly guide on creating a digital business card with React, including how to structure and deploy it, which can impress potential employers with your growing skillset! …
React Native Vision Camera is a powerful open-source library that allows developers to easily integrate camera functionality into their React Native applications. It is based on the Google ML Kit and offers a variety of features such as rea…
React is a popular JavaScript library for building user interfaces. With its virtual DOM, component-based architecture, and reusable code, it has gained a reputation as a powerful and intuitive framew…
Welcome to my blog where I elaborate on how my project works! I am excited to share that my project successfully merged into reactplay.io as part of the #2playsAMonth event by reactplay.io Description My project is built in react.js and it …
If you are a person who just finished Learning React Framework and got fairly good at it. You start giving Interviews, You almost got the skills for developing Single Page applications. You are having…
Intro I am always fascinated by the flexibility and power of Streamlit. Some months ago, I created a custom component with Streamlit that wraps a React-based toggle component. But, the process was not…
Code Splitting It's a feature supported by bundlers used to create multiple bundles to be loaded dynamically at the runtime. For example, let's take a blogging site which has many pages and is very he…
Fact 01: in Respond within function return scope what is allowed and what is not allowed to write? In a React function component's return statement, you are allowed to write JSX elements and expressio…
The StyleSheet component in React Native defines styles for components in a mobile app. It acts as a container for a set of style rules, which can be applied to one or more components. The StyleSheet …