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

15 lines
248 B
TypeScript
Raw Normal View History

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