import { Component } from '@angular/core';

@Component({
  standalone: false,
  selector: 'baz-component',
  template: '<h1>hello world</h1>',
})
export class BazComponent {}
