testing
by Theara Yuom
HTML
<button class="btn-red" onclick="clickMe()">
Click Me
</button>
CSS
.btn-red {
color: red
}
Babel + JSX
function clickMe(){
var car = {
name:'Camry',
model: '2018',
color:'red',
start:function(){
alert('Start')
}
}
car.start()
}