Mohammed Abdul Raheemraheemalzeeshan.hashnode.dev·Mar 25, 2024Components In ReactIn this article, we are going to learn about the components of react Components What is a Component? In React, components are reusable pieces of code that represent a part of a user interface. Components allow developers to organize and structure the...React Notes2Articles1Week
Mohammed Abdul Raheemraheemalzeeshan.hashnode.dev·Mar 6, 2024React Folder StructureIn this article, I am going to discuss the React folder structure with Vite. After installing your React app with Vite you will get 3 folders and 7 files. In React they folder there are main 3 folders and 5 files. They are: > node_modules/ > public/...React NotesReact
Victory Asokomehsoks.hashnode.dev·Feb 26, 2024A Practical Guide to Testing React Applications (Unit Tests)Introduction Test Driven Development (TDD) is a beneficial practice for engineers, but in reality, it's not always feasible. However, the initial investment in writing automated tests is worth the effort as it saves you time in the long run. In this ...1 like·138 readsReact
Dev Runnerdevrunner.hashnode.dev·Mar 12, 2023React notes - 04 Component BasicsLet’s start with visualization: JSX JSX is a syntax extension for JavaScript used in React that allows you to write HTML-like code in your JavaScript code. It stands for "JavaScript XML" because it lets you create XML-like structures in your code. I...38 readsReact
Dev Runnerdevrunner.hashnode.dev·Mar 12, 2023React notes - 03 ComponentsThis is brief visualization of the chapter about components: In React, a component is a building block of the user interface. It can be a function or a class that receives inputs called props and returns a hierarchy of views that represent the UI. I...29 readsReact
Dev Runnerdevrunner.hashnode.dev·Mar 12, 2023React notes - 01 CLI ToolsLet’s begin with the basics. To create React application we can use two options Create React App and Vite With Vite your application will be created faster Vite and Create React App are both popular tools for setting up React projects quickly and eas...96 readsReact