basicui.module.ts 1.17 KB
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { BasicuiRoutingModule } from './basicui-routing.module';
import { DropdownComponent } from './dropdown/dropdown.component';
import { ModalComponent } from './modal/modal.component';
import { OffcanvasComponent } from './offcanvas/offcanvas.component';
import { TooltipPopoversComponent } from './tooltip-popovers/tooltip-popovers.component';
import { TablesModule } from './tables/tables.module';
import { SharedModule } from 'src/app/shared/sharedmodule';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatNativeDateModule } from '@angular/material/core';
import { SimplebarAngularModule } from 'simplebar-angular';

@NgModule({
  declarations: [
    DropdownComponent,
    ModalComponent,
    OffcanvasComponent,
    TooltipPopoversComponent,
  ],
  imports: [
    CommonModule,
    BasicuiRoutingModule,
    TablesModule,
    SharedModule,
    FormsModule,
    ReactiveFormsModule,
    MatFormFieldModule,
    MatNativeDateModule,
    SimplebarAngularModule,
  ],
})
export class BasicuiModule {}