mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-12-28 21:09:31 +00:00
MikroWizard Initial commit | MikroFront Welcome to the world :)
This commit is contained in:
commit
b97aec6b97
203 changed files with 41097 additions and 0 deletions
33
src/app/views/user_tasks/user_tasks.module.ts
Normal file
33
src/app/views/user_tasks/user_tasks.module.ts
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
import { NgModule } from "@angular/core";
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
|
||||
import {
|
||||
ButtonModule,
|
||||
CardModule,
|
||||
FormModule,
|
||||
GridModule,
|
||||
ModalModule,
|
||||
} from "@coreui/angular";
|
||||
import { UserTasksRoutingModule } from "./user_tasks-routing.module";
|
||||
import { UserTasksComponent } from "./user_tasks.component";
|
||||
import { GuiGridModule } from "@generic-ui/ngx-grid";
|
||||
|
||||
import { NgxSuperSelectModule} from "ngx-super-select";
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
UserTasksRoutingModule,
|
||||
CardModule,
|
||||
CommonModule,
|
||||
GridModule,
|
||||
FormModule,
|
||||
ButtonModule,
|
||||
GuiGridModule,
|
||||
ModalModule,
|
||||
FormsModule,
|
||||
NgxSuperSelectModule,
|
||||
],
|
||||
declarations: [UserTasksComponent],
|
||||
})
|
||||
export class UserTasksModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue