JSFiddle - React, Tailwind, and code Playground
by Minko Gechev
HTML
<div ng-app ng-controller="MainCtrl">
<div style="st">{{val}}</div>
</div>
JavaScript
function MainCtrl($scope) {
$scope.val = 'test';
$scope.st = {
color: 'red'
};
}