mirror of
https://github.com/block-core/angor-hub-old.git
synced 2026-01-31 15:44:20 +01:00
19 lines
416 B
TypeScript
19 lines
416 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 for AppComponent
|
|
*/
|
|
constructor() {
|
|
// Initialization logic if needed
|
|
}
|
|
}
|