JSFiddle - React, Tailwind, and code Playground

by Laxmikant Dange

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