matrix-dimension/web/app/home/home.component.ts
2017-05-26 21:51:48 -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
}
}