raact app.js code example
Example 1: react.js
class ShoppingList extends React.Component {
render() {
return (
<div className="shopping-list">
<h1>Shopping List for {this.props.name}</h1>
<ul>
<li>Instagram</li>
<li>WhatsApp</li>
<li>Oculus</li>
</ul>
</div>
);
}
}
// Example usage: <ShoppingList name="Mark" />
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)