JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="myApp">
    <div ng-controller= "myController  as controller">
        <p>{{sayHello}}</p>
        <p>{{sayDescription}}</p>
    </div>
</div>
<script>
    var app = angular.module('myApp', []) ;
    app.controller('myController', function($scope){
        $scope.sayHello = 'Hello';
    $scope.sayDescription = "Voici ma description, ceci est un bon contrôlleur il définit simplement des variables scope, pas d\'interaction avec le DOM";
    }) ;
</script>

JavaScript

a