mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 11:23:15 +02:00
15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import { RouterModule } from '@angular/router';
|
||
|
|
import { NxWelcomeComponent } from './nx-welcome.component';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
standalone: true,
|
||
|
|
imports: [NxWelcomeComponent, RouterModule],
|
||
|
|
selector: 'app-root',
|
||
|
|
templateUrl: './app.component.html',
|
||
|
|
styleUrl: './app.component.scss',
|
||
|
|
})
|
||
|
|
export class AppComponent {
|
||
|
|
title = 'frontend';
|
||
|
|
}
|