Initial commit

This commit is contained in:
2023-02-04 08:23:51 +02:00
parent d8d853060e
commit 9d3f27b49e
26 changed files with 632 additions and 39 deletions

View File

@@ -5,6 +5,8 @@ import { FormsModule } from '@angular/forms';
import { HomePage } from './home.page';
import { HomePageRoutingModule } from './home-routing.module';
import {PlantContainerComponent} from "../plant-container/plant-container.component";
import {ProgressBarComponent} from "../progress-bar/progress-bar.component";
@NgModule({
@@ -14,6 +16,6 @@ import { HomePageRoutingModule } from './home-routing.module';
IonicModule,
HomePageRoutingModule
],
declarations: [HomePage]
declarations: [HomePage, PlantContainerComponent, ProgressBarComponent]
})
export class HomePageModule {}