React is a declarative, efficient, and flexible JavaScript library for building user interfaces. code example
Example 1: react js documentation
npx create-react-app my-app-name
npx create-react-app my-app-name --npm
npx create-react-app my-app-name --template typescript
yarn start
Example 2: 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>
);
}
}