Web practical
Name: Hupesh Manohar Zope Roll No:- 52 Batch:-B2 Practical No:1 Setting Up React Environment and Creating a Basic React Application .(Install Node.js, NPM, Create React App). node -v npm -v npm install -g create-react-app npx create-react-app syimcaclass cd syimcaclass npm start App.js import React from 'react'; function App() { return ( <div> <h1>Hello React World!</h1> <p>This is my first React App.</p> </div> ); } export default App; Output: ________________ Name: Hupesh Manohar Zope Roll No:- 52 Batch:-B2 Practical No:2 JSX and Component Creation Using Props. node -v npm -v npm install -g create-react-app npx create-react-app jsxcomponent cd jsxcomponent npm start Greeting.js. import React from 'react'; function Greeting(props) { return <p>Hello, {props.name}! Nice to see you.</p>; } export default Greeting; App.js import ...