JSFiddle - React, Tailwind, and code Playground

HTML

<html lang="en" ng-app>
    
    <head>
        <meta charset="utf-8">
        <title>Angular Demo</title>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script>
    </head>
    
    <body>
        <div ng-controller="MyController">
             <h1>{{person.firstName}}</h1>

            <p>He lives in {{person.city}}</p>
        </div>
        <script>
            function MyController($scope) {
                $scope.person = {
                    'firstName': 'Adrian',
                        'city': 'Orlando'
                }
            }
        </script>
    </body>

</html>