"use strict"; angular.module("vocabulary") .component("wordLists", { templateUrl: "/js/redesign-angular/wordLists/word-lists.html", controller: "WordListsController", bindings: {topics: "<"} }) .controller("WordListsController", function () { var ctrl = this; });