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