generated from nhcarrigan/template
18 lines
324 B
TypeScript
18 lines
324 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
imports: [],
|
|
selector: "app-landing",
|
|
styleUrl: "./landing.component.css",
|
|
templateUrl: "./landing.component.html",
|
|
})
|
|
export class LandingComponent {
|
|
|
|
}
|