JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/ng-template" id="/editor-tpl.html">
    Editor Template {{test}}
</script>
<div ng-controller="MyCtrl">
dffdsfsf {{test2}}</div>
<div ng-view></div>
<div ng-view></div>

JavaScript

function MyCtrl($scope) {
    $scope.test = ' tessssssssssst';
     $scope.test2 = 'fdbuuuuuuuuuuuu    enenrerserjh soırfıhsf ıdsf hsfıhd sıh';
}

var myApp = angular.module('myApp', [], function($routeProvider, $locationProvider) {
    $routeProvider.when('/', {
        templateUrl: '/editor-tpl.html',
        controller: MyCtrl
    });
});