import { Component, Input } from '@angular/core' @Component({ selector: 'app-docs-chapters', template: `
{{ chapter.label }}
{{ item.label }}
`, }) export class DocsChaptersComponent { @Input() public chapters = [] @Input() public section: any = {} }