JSFiddle - React, Tailwind, and code Playground

by Varun Krishna P

HTML

<body ng-app="myApp">
        <div  ng-controller='TextController'>
        <p>{{SomeText}}</p>
        <h3 ng-bind="SomeText">Heading Tag level 3</h3>
        </div>
    </body>

JavaScript

var myAppmodel = angular.module('myApp',[]);
myAppmodel.controller('TextController',
                      function($scope){
                          var SomeText={};
                          SomeText.message='Welcome to Angularjs';
                          $scope.SomeText = SomeText.messae;
                      });