| 123456789101112131415 |
- import { Component } from '@angular/core';
- import { IonApp, IonRouterOutlet } from '@ionic/angular/standalone';
- import { FormsModule } from '@angular/forms';
- @Component({
- selector: 'app-root',
- templateUrl: 'app.component.html',
- standalone: true,
- imports: [
- IonApp, IonRouterOutlet,FormsModule
- ],
- })
- export class AppComponent {
- constructor() {}
- }
|