matrix-dimension/web/app/home/home.component.ts

15 lines
248 B
TypeScript
Raw Normal View History

import { Component } from "@angular/core";
@Component({
2017-08-27 05:26:00 +00:00
selector: "my-home",
templateUrl: "./home.component.html",
styleUrls: ["./home.component.scss"],
})
export class HomeComponent {
constructor() {
// Do stuff
}
}