This repository has been archived on 2025-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
forms/client/src/app/home/home.component.ts
Naomi Carrigan f2c6d6d3ef
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
feat: resolve lint/build/test errors
2025-02-17 11:48:46 -08:00

18 lines
373 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.component.css",
templateUrl: "./home.component.html",
})
export class HomeComponent {
}