Trying to build a webui using Ionic & Angular

This commit is contained in:
2022-07-17 23:46:48 +02:00
parent c0cf27780d
commit 00e601e246
58 changed files with 31063 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { LoaderPageRoutingModule } from './loader-routing.module';
import { LoaderPage } from './loader.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
LoaderPageRoutingModule
],
declarations: [LoaderPage]
})
export class LoaderPageModule {}