16 lines
345 B
TypeScript
16 lines
345 B
TypeScript
|
import { Component, OnInit, Input } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'ucap-group-expansion-panel',
|
||
|
templateUrl: './expansion-panel.component.html',
|
||
|
styleUrls: ['./expansion-panel.component.scss']
|
||
|
})
|
||
|
export class ExpansionPanelComponent implements OnInit {
|
||
|
@Input()
|
||
|
groupList: any[];
|
||
|
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit() {}
|
||
|
}
|