JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="myApp">
<div ng-controller="myController">{{name}}</div>
</div>
JavaScript
let app=angular.module('myApp',[])
app.controller('myController',function($scope,$http){
$scope.name='Laxmikant'
})