MAMohammed Abdul Raheeminraheemalzeeshan.hashnode.dev·Mar 26, 2024 · 1 min readBootstrap in ReactWe are going to learn how to install Bootstrap in our React App. What is Bootstrap Bootstrap is an open-source css framework. Bootstrap gives us pre-styled elements like header, footer, buttons, alerts, etc. Bootstrap default elements can be customiz...00
MAMohammed Abdul Raheeminraheemalzeeshan.hashnode.dev·Mar 25, 2024 · 3 min readComponents 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...00
MAMohammed Abdul Raheeminraheemalzeeshan.hashnode.dev·Mar 7, 2024 · 2 min readWhat is JSX in ReactThe JSX stands for Javascript XML. In JSX you can code HTML code within a javascript file. This JSX allows you to mix HTML-like code syntax with JavaScript expression, making it easier to represent the structure of your UI in a more declarative and r...00
MAMohammed Abdul Raheeminraheemalzeeshan.hashnode.dev·Mar 6, 2024 · 3 min readReact 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/...00
MAMohammed Abdul Raheeminraheemalzeeshan.hashnode.dev·Mar 5, 2024 · 3 min readInstall React AppTo work with React first, you need to install node.js on your local computer. Install Node.js it on your computer. Go to nodejs.org website, and install the recommended version of node Once the node is installed on your computer, check the node vers...00