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