mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-09 12:05:08 +00:00
20 lines
372 B
TypeScript
20 lines
372 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
|
|
@Component({
|
|
selector : 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls : ['./app.component.scss'],
|
|
standalone : true,
|
|
imports : [RouterOutlet],
|
|
})
|
|
export class AppComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|