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