generated from nhcarrigan/template
All checks were successful
Node.js CI / Lint and Test (push) Successful in 56s
19 lines
345 B
TypeScript
19 lines
345 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { Component } from "@angular/core";
|
|
import { RouterModule } from "@angular/router";
|
|
|
|
@Component({
|
|
imports: [ RouterModule ],
|
|
selector: "app-home",
|
|
styleUrl: "./home.css",
|
|
templateUrl: "./home.html",
|
|
})
|
|
export class Home {
|
|
|
|
}
|