JS Boilerplate
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.css">
SCSS
* {
-webkit-font-smoothing: antialiased;
}
body {
padding: 5%;
}
Babel + JSX
console.clear();
let statusAction = (status = 'PARTIALLY_CANCELLED' || 'FULLY_CANCELLED') ? 'cancel' : 'error';
this.$el.addClass(this.stateClasses[statusAction]);
this.overlayView.model.set('message', this.stateText[statusAction]);