Practice
JSX is an XML-like syntax extension for ECMAScript (the abbreviation stands for JavaScript XML ). Essentially, it simply provides syntactic sugar for the
In the example below, the text inside the
class App extends React.Component {
render() {
return(
<div>
<h1>{'
Welcome to the world of React
!'}</h1>
</div>
)
}
}
Comments