]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/address-alert.component.ts
LP1847800 Admin grids support config_field links
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / address-alert.component.ts
1 import {Component, OnInit, ViewChild, TemplateRef} from '@angular/core';
2
3 @Component({
4     templateUrl: './address-alert.component.html'
5 })
6
7 export class AddressAlertComponent {
8
9     @ViewChild('helpTemplate', { static: true }) helpTemplate: TemplateRef<any>;
10
11     constructor() {}
12 }
13