import ngModule from '../module'; class LocatorTable { constructor($state) { this.$state = $state; } } LocatorTable.$inject = ['$state']; ngModule.component('vnLocatorTable', { template: require('./locator-table.html'), controller: LocatorTable });