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

20 lines
372 B
TypeScript
Raw Normal View History

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