1
ReactBeginner#jsx
A JavaScript library for building UIs from small composable components. It keeps a virtual DOM, diffs it after state changes and patches only what actually changed, so you describe the UI declaratively instead of manipulating the DOM by hand.
function Welcome({ name }) {
return <h1>Hello {name}</h1>;
}
<Welcome name="Anu" />