angular-cn/aio/src/app/custom-elements/expandable-section/expandable-section.component.ts
2018-03-16 12:39:07 -07:00

12 lines
336 B
TypeScript

/* 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;
}