React 101
by arunoda
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.0/react-dom.min.js"></script>
<div id="app"/>
Babel + JSX
class Welcome extends React.Component {
componentDidMount() {
console.log("Component mounted to the DOM");
}
render() {
const { name } = this.props;
return (
<div>Hello Again, {name}</div>
);
}
}
ReactDOM.render(
<Welcome name="Arunoda Susiripala" />,
document.getElementById('app')
);