feat: scaffold application
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s

This commit is contained in:
2025-07-03 20:08:30 -07:00
parent 2752f286df
commit 452f7bb35b
37 changed files with 12484 additions and 11 deletions

18
client/src/app/app.ts Normal file
View File

@ -0,0 +1,18 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Component } from "@angular/core";
import { RouterOutlet } from "@angular/router";
@Component({
imports: [ RouterOutlet ],
selector: "app-root",
styleUrl: "./app.css",
templateUrl: "./app.html",
})
export class App {
protected title = "client";
}