import { Component, Input } from "@angular/core";
@Component({
selector: "colors-table",
template: `
{{tableTitle}}
{{color}}
{{colorGroup[color]}}
`
})
export class ColorsTable {
@Input() tableTitle: string;
@Input() tableMapColors: Object;
constructor() {
}
}