mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
15 lines
248 B
TypeScript
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
|
|
}
|
|
|
|
}
|