JSFiddle - React, Tailwind, and code Playground

by Aakash Khapare M

HTML

<div ng-app ng-controller="myCtrl" ng-init="init()">
    <p ng-bind-html="tabList"></p>
</div>

JavaScript

function myCtrl($scope, $sce, $compile) {
    $scope.init = function () {
        $scope.tabList = $sce.trustAsHtml('<a ng-click="getActiveTag()">Test</a>');    }
}