import { ChangeDetectionStrategy, Component } from '@angular/core'; import { demoComponentContent } from './carousel-section.list'; import { ContentSection } from '../../docs/models/content-section.model'; @Component({ selector: 'carousel-section', templateUrl: './carousel-section.component.html', changeDetection: ChangeDetectionStrategy.OnPush }) export class CarouselSectionComponent { name = 'Carousel'; src = 'https://github.com/valor-software/ngx-bootstrap/tree/development/src/carousel'; componentContent: ContentSection[] = demoComponentContent; }