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