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

14 lines
272 B
TypeScript
Raw Normal View History

import { Component } from "@angular/core";
import "../style/app.scss";
@Component({
2017-08-27 05:26:00 +00:00
selector: "my-app", // <my-app></my-app>
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"],
})
export class AppComponent {
constructor() {
}
}