Running Prettier in Project
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
import {Component, Input} from '@angular/core';
|
||||
import { Component, Input } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-error-box',
|
||||
templateUrl: './error-box.component.html',
|
||||
styleUrls: ['./error-box.component.css']
|
||||
styleUrls: ['./error-box.component.css'],
|
||||
})
|
||||
export class ErrorBoxComponent {
|
||||
export class ErrorBoxComponent {
|
||||
@Input()
|
||||
errorMessage: string|null = "Error, please try again later."
|
||||
|
||||
constructor() { }
|
||||
errorMessage: string | null = 'Error, please try again later.';
|
||||
|
||||
constructor() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user