import { Component, Input } from "@angular/core"; @Component({ selector: "colors-table", template: `

{{tableTitle}}

{{color}}
{{tableMapColors[color]}}
` }) export class ColorsTable { @Input() tableTitle:string; @Input() tableMapColors: Object; constructor() { } }