reacy js code example
Example 1: react.js
class ShoppingList extends React.Component {
render() {
return (
Shopping List for {this.props.name}
- Instagram
- WhatsApp
- Oculus
);
}
}
// Example usage:
Example 2: react.js
// How to create a React app
npx create-react-app [(.) OR (new Folder)] = (npx create-react-app .) OR (npx create-react-app my-app)