generated from nhcarrigan/template
feat: scaffold application
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s
This commit is contained in:
18
client/src/app/app.ts
Normal file
18
client/src/app/app.ts
Normal 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";
|
||||
}
|
Reference in New Issue
Block a user