AngularJS simple directive

HTML

<div ng-app="myApp">
    <show-workflow-history></show-workflow-history>
</div>

JavaScript

var app = angular.module('myApp', []);

app.directive('showWorkflowHistory', function () {
    return {
        restrict: "E",
        template: '<div>Sasdasdasdasd.</div>'
    };
});