Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.ts 300B

123456789101112
  1. import { Component, signal } from '@angular/core';
  2. import { RouterOutlet } from '@angular/router';
  3. @Component({
  4. selector: 'app-root',
  5. imports: [RouterOutlet],
  6. templateUrl: './app.html',
  7. styleUrl: './app.scss'
  8. })
  9. export class App {
  10. protected readonly title = signal('kaimyo-management');
  11. }