JSFiddle - React, Tailwind, and code Playground

by Aakash Khapare M

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'
}
}