Add list of tasks
This commit is contained in:
@@ -5,14 +5,22 @@ import { FormsModule } from '@angular/forms';
|
||||
import { TasksPage } from './tasks.page';
|
||||
|
||||
import { TasksPageRoutingModule } from './tasks-routing.module';
|
||||
import { provideHttpClient } from '@angular/common/http';
|
||||
import { TaskService } from 'src/app/services/task.service';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
IonicModule,
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
TasksPageRoutingModule
|
||||
TasksPageRoutingModule,
|
||||
MatIconModule,
|
||||
],
|
||||
declarations: [TasksPage]
|
||||
declarations: [TasksPage],
|
||||
providers: [
|
||||
provideHttpClient(),
|
||||
TaskService
|
||||
]
|
||||
})
|
||||
export class TasksPageModule {}
|
||||
|
||||
Reference in New Issue
Block a user