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