(function() { 'use strict'; angular.module('raz') .component('gradeK', { templateUrl: '/js/angular/sample-kits/grades/grade-k.html', controller: 'gradeKController' }) .controller('gradeKController', ['sampleKits', function(sampleKits) { var ctrl = this; ctrl.sampleKits = sampleKits; }]) })();