JSFiddle - React, Tailwind, and code Playground

HTML

<html ng-app>
    
    <body ng-controller="PhoneListCtrl">
        <ul>
            <li ng-repeat="phone in phones">{{phone.name}}
                <p ng-bind-html-unsafe='phone.snippet' />
            </li>
        </ul>
    </body>

</html>

JavaScript

function PhoneListCtrl($scope) {
    $scope.phones = [{
        "name": "Motorola XOOM™ with Wi-Fi",
            "snippet": "The Next, Next <br/> Generation tablet."
    }];
}