Skip to content
Snippets Groups Projects
bars.component.ts 263 B
Newer Older
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-bars',
  templateUrl: './bars.component.html',
  styleUrls: ['./bars.component.css']
})
export class BarsComponent implements OnInit {

  constructor() {}

  ngOnInit(): void {}

}