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