Skip to main content

first post

 this is heading


this is simple para



another wiki

Comments

Popular posts from this blog

react js first class

React installation steps 🙂 1.software installation 2.react project creation 3.folder structure step1:install nodejs node + npm + npx npm -> node package manager npx -> node package extractor/executor cmd> node -v cmd> npm -v cmd> npx -v step2: cmd> npx create-react-app my-app  ============== or============= step2.1: cmd>  npm i -g create-react-app step2.2: cmd>  create-react-app my-app step3: open cmd inside project cmd> npm start http://localhost:3000/ IDE -----> vs code 3.folder structure -------------------- 1.node_modules -> collection of libraries 2.package.json -> register of node_modules 3.public/index.html 4.src/index.js 5.src/App.js components -> class,function 1.creating functional component ----------------------------- 1.create a js file inside src folder ex:Sample.js 2.write code : import React from "react"; 3.create a function ex: function Sample(){} 4.return html code from the function ex: function Sample(){   ...