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({ @Component({
standalone: true, standalone: true,
selector: 'app-button', selector: 'app-button',
template: ` templateUrl: './button.component.html',
<button (click)="submit.emit('hello')">{{title}}</button>
`
}) })
export class ButtonComponent { export class ButtonComponent {
@Input({required: true}) title!: string; @Input({required: true}) title!: string;