generated from nhcarrigan/template
18 lines
307 B
TypeScript
18 lines
307 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
imports: [],
|
|
selector: "app-characters",
|
|
styleUrl: "./characters.css",
|
|
templateUrl: "./characters.html",
|
|
})
|
|
export class Characters {
|
|
|
|
}
|