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