matrix-dimension/web/app/home/home.component.ts
2017-08-26 23:26:00 -06:00

15 lines
248 B
TypeScript

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