generated from nhcarrigan/template
20 lines
346 B
TypeScript
20 lines
346 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
import { Component } from "@angular/core";
|
|
|
|
/**
|
|
* Renders the disclaimer page.
|
|
*/
|
|
@Component({
|
|
imports: [],
|
|
selector: "app-disclaimer",
|
|
styleUrl: "./disclaimer.css",
|
|
templateUrl: "./disclaimer.html",
|
|
})
|
|
export class Disclaimer {
|
|
|
|
}
|