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

@Component({
  standalone: false,
  selector: 'ng-component',
  template: 'Hello Angular 2',
})
export class SecondaryAngularComponent {}
