STSantosh Thapainsantoshthapa.hashnode.dev·Jul 15, 2023 · 1 min readwrite first component in React!The component is nothing but a function in React and it's just a piece of reusable code. First, we will create a components folder inside the src folder and create a component there and also we will create an Item.css file for the Item component. exa...00
STSantosh Thapainsantoshthapa.hashnode.dev·Jul 15, 2023 · 2 min readHow to setup react ?To create react app. npx create-react-app my-app cd my-app npm start To create a project called my-app, we need to run this command npx create-react-app my-app and then change the directory to the my-app folder and run this command cd my-app t...00