Optimizes Imports

This commit is contained in:
2023-12-29 07:12:29 -03:00
parent 7a0fd959a0
commit d08255b31f
45 changed files with 222 additions and 368 deletions

View File

@@ -1,4 +1,4 @@
import { Component, Input } from '@angular/core';
import {Component, Input} from '@angular/core';
@Component({
selector: 'app-error-box',
@@ -7,7 +7,7 @@ import { Component, Input } from '@angular/core';
})
export class ErrorBoxComponent {
@Input()
errorMessage: string | null = 'Error, please try again later.';
errorMessage: string | null = 'Error, please try again later.';
constructor() {}
}