/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { Component, input } from "@angular/core"; @Component({ imports: [], selector: "app-error", styleUrl: "./error.component.css", templateUrl: "./error.component.html", }) export class ErrorComponent { public error = input.required(); }