add filter service and enable chart states to filter lists

This commit is contained in:
Jesse Lucas
2020-04-03 09:20:27 -05:00
parent cce8b60515
commit 3bdceb1d6b
15 changed files with 144 additions and 48 deletions
@@ -1,5 +1,5 @@
<div fxLayout="row" fxLayoutAlign="space-between start">
<div></div>
<div>{{state}}: &nbsp;</div>
<div><a href="#">{{state}}</a>: &nbsp;</div>
<div>{{count}}</div>
</div>
@@ -1,16 +1,13 @@
import { Component, OnInit, Input } from '@angular/core';
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-chart-item',
templateUrl: './chart-item.component.html',
styleUrls: ['./chart-item.component.scss']
})
export class ChartItemComponent implements OnInit {
export class ChartItemComponent {
@Input() state: string;
@Input() count: number;
constructor() { }
ngOnInit(): void {
}
}