JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app>
    <div ng-controller="MezoController">
        <input type="text" ng-model=mymodel />
        <br/>
        {{"Hello"}}
        <br/>{{2 + 2}}
        <br/>{{mymodel}}
        <div/>
    </div>

JavaScript

function MezoController($scope) {
    $scope.mymodel = "Mezo Blog";
}