fuse-angular/src/app/app.component.ts

17 lines
267 B
TypeScript
Raw Normal View History

2021-04-15 14:13:46 +00:00
import { Component } from '@angular/core';
@Component({
selector : 'app-root',
templateUrl: './app.component.html',
styleUrls : ['./app.component.scss']
})
export class AppComponent
{
/**
* Constructor
*/
constructor()
{
}
}