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