JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="myApp" ng-controller="dummy">
<h2>here we have text boxes and button</h2>
<button type='button' class='btn btn-primary'>inside Basic</button>
<div ng-bind-html="data"></div>
</div>
JavaScript
angular.module('myApp', [])
.controller('dummy', ['$scope', '$sce', function ($scope, $sce) {
$scope.data = $sce.trustAsHtml('<button type="button" class="btn btn-primary">a new button!</button>');
}]);