refactor: add semicolon

This commit is contained in:
2025-08-20 22:03:46 -03:00
parent 2b67abb708
commit e09ece6868

View File

@@ -8,5 +8,5 @@ import { Component, output } from '@angular/core';
styleUrl: './checkbox.component.css'
})
export class CheckboxComponent {
checked = output<boolean>()
checked = output<boolean>();
}