2018-08-18 01:04:59 +00:00
|
|
|
import { Component, Input } from '@angular/core';
|
2018-08-17 10:53:40 +00:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-nic-dropdown',
|
|
|
|
templateUrl: './nic-dropdown.component.html',
|
|
|
|
styleUrls: ['./nic-dropdown.component.scss'],
|
|
|
|
})
|
|
|
|
export class NicDropdownComponent {
|
2018-08-18 01:04:59 +00:00
|
|
|
@Input() blockTarget: any;
|
2018-08-17 10:53:40 +00:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|