angular-cn/aio/src/app/custom-elements/expandable-section/expandable-section.component.ts

12 lines
336 B
TypeScript
Raw Normal View History

/* tslint:disable component-selector */
import {Component, Input} from '@angular/core';
/** Custom element wrapper for the material expansion panel with a title input. */
@Component({
selector: 'expandable-section',
templateUrl: 'expandable-section.component.html',
})
export class ExpandableSectionComponent {
@Input() title;
}