fix(ct): angular unused file

This commit is contained in:
sand4rt 2024-05-15 16:39:14 +02:00
parent 7f4626a8eb
commit a018a272de

View file

@ -3,9 +3,7 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
standalone: true,
selector: 'app-button',
template: `
<button (click)="submit.emit('hello')">{{title}}</button>
`
templateUrl: './button.component.html',
})
export class ButtonComponent {
@Input({required: true}) title!: string;