Skip to main content

About Us

Welcome to official blog page of SAIFI CODE. Here I post blogs related to react js basics ,node js , HTML, CSS, Bootstrap and related technologies.

Email - naimuddin5409@gmail.com

Comments

Popular posts from this blog

Shopping Cart React.js Project with Explanation✅ [ Simple Ecommerce Website using Reactjs ]

Hello guys in this video we will discuss shopping cart web app.  first we need to install the basic react app using - npx create-react-app app-name The folder structure should be containing three files  in components folder as below : In App.js :  import './App.css' ; import Header from './components/Header' ; import ProductList from './components/ProductList' ; import CartList from './components/CartList' ; import { useState } from 'react' ; function App () {   const [ product , setProduct ] = useState ([     {       url : 'https://rukminim1.flixcart.com/image/300/300/l51d30w0/shoe/z/w/c/10-mrj1914-10-aadi-white-black-red-original-imagft9k9hydnfjp.jpeg?q=70' ,       name : 'TRQ White Shoes' ,       category : 'Shoes' ,       seller : 'AMZ Seller Ghz' ,       price : 1999     },     {       url : 'https://5.imimg.com/data5/KC/PC...

MERN Authentication - Login, Register, Verification Email, Forget Password, User Name & Logout on Navbar

In The React Side :  The folder structure will be : Lets start from App.js  On this file we will be adding routing , install the package react-router-dom : import './App.css' ; import React from 'react' ; import {   BrowserRouter as Router ,   Routes ,   Route ,   Link } from "react-router-dom" ; import Signup from './components/Signup' ; import Signin from './components/Signin' ; import Home from './components/Home' ; import ForgetPassword from './components/ForgetPassword' ; import NewSubmit from './components/NewSubmit' ; function App () {   return (     < div >       < Router >         < Routes >           < Route path = "/signup" element = { < Signup /> } />           < Route path = "/signin" element = { < Signin /> } />           < Route path = "/" e...

React CRUD using LocalStorage & Material UI

Follow the steps below :  Install the following packages :  npm install @mui/material @emotion/react @emotion/styled   For using ICONS :  npm i @mui/icons-material     For Routing :  npm i react-router-dom FOLDER STRUCTURE should be like : Routing will done at App.js :  import Header from './components/Header' import {   BrowserRouter as Router ,   Routes ,   Route ,   Link } from "react-router-dom" ; import Home from './components/Home' import Edit from './components/Edit' import Add from './components/Add' function App () {   return (     <>       < Header />       < Router >         < Routes >           < Route path = "/" element = { < Home /> } />           < Route path = "/add" element = { < Add /> } />       ...