|
|
@@ -0,0 +1,18 @@
|
|
|
+import { Component, OnInit } from '@angular/core';
|
|
|
+import { IonHeader, IonToolbar, IonTitle, IonContent, IonCard, IonCardContent, IonButton, IonCardHeader, IonCardTitle, IonCardSubtitle, ModalController } from '@ionic/angular/standalone';
|
|
|
+@Component({
|
|
|
+ selector: 'app-test',
|
|
|
+ templateUrl: './test.component.html',
|
|
|
+ styleUrls: ['./test.component.scss'],
|
|
|
+ standalone: true,
|
|
|
+ imports: [IonHeader, IonToolbar, IonTitle, IonContent,
|
|
|
+ IonCard, IonCardContent, IonButton, IonCardHeader, IonCardTitle, IonCardSubtitle,
|
|
|
+ ],
|
|
|
+})
|
|
|
+export class TestComponent implements OnInit {
|
|
|
+
|
|
|
+ constructor() { }
|
|
|
+
|
|
|
+ ngOnInit() {}
|
|
|
+
|
|
|
+}
|