import { Component } from '@angular/core'; let components = [ {name: 'Line Chart', href: 'lineChart'}, {name: 'Bar Chart', href: 'barChart'}, {name: 'Doughnut Chart', href: 'doughnutChart'}, {name: 'Radar Chart', href: 'radarChart'}, {name: 'Pie Chart', href: 'pieChart'}, {name: 'Polar Area Chart', href: 'polarAreaChart'}, {name: 'Dynamic Chart', href: 'baseChart'} ]; @Component({ selector: 'demo-header', template: ` ` }) export class DemoHeaderComponent { isCollapsed: boolean; public components:Array = components; public prefix:string = ''; }