salix/client/locator/src/locator-table/locator-table.js

14 lines
275 B
JavaScript
Raw Normal View History

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