mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
import { Component } from "@angular/core";
|
|
import "../style/app.scss";
|
|
|
|
@Component({
|
|
selector: "my-app", // <my-app></my-app>
|
|
templateUrl: "./app.component.html",
|
|
styleUrls: ["./app.component.scss"],
|
|
})
|
|
export class AppComponent {
|
|
|
|
constructor() {
|
|
console.log("Dimension AppComponent constructed");
|
|
}
|
|
}
|