Files
hikari/client/src/app/home/home.ts
Naomi Carrigan a12f2b0315
All checks were successful
Node.js CI / Lint and Test (push) Successful in 56s
feat: routerlinks
2025-07-04 20:21:39 -07:00

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 {
}