generated from nhcarrigan/template
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
/**
|
|
* @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<string>();
|
|
}
|