generated from nhcarrigan/template
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
18 lines
373 B
TypeScript
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 {
|
|
|
|
}
|