app.component.ts 297 B

123456789101112
  1. import { Component } from '@angular/core';
  2. import { IonApp, IonRouterOutlet } from '@ionic/angular/standalone';
  3. @Component({
  4. selector: 'app-root',
  5. templateUrl: 'app.component.html',
  6. standalone: true,
  7. imports: [IonApp, IonRouterOutlet],
  8. })
  9. export class AppComponent {
  10. constructor() {}
  11. }