JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller = "MyController">
<h1>{{author.name}}</h1>
<p>{{author.title + ',' + author.company}}</p>
</div>
JavaScript
function MyController($scope){
$scope.author = {
'name' : 'palitha ',
'title' : 'test',
'company' : 'Home company'
}
}