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({
selector: 'my-app', // <my-app></my-app>
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
export class AppComponent {
constructor() {
}
}