JSFiddle - React, Tailwind, and code Playground
by grendian
HTML
<div ng-app ng-controller='AppController'>
{{testFn()}}
</div>
JavaScript
function AppController($scope) {
$scope.testFn = function() {
console.log("TestFn");
return "test";
}
}