mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
fix(forms): add missing forms module import (#5530)
This commit is contained in:
parent
f956daa5dd
commit
b8c45ddef8
1 changed files with 47 additions and 0 deletions
47
src/app/pages/forms/forms.module.ts
Normal file
47
src/app/pages/forms/forms.module.ts
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import {
|
||||||
|
NbActionsModule,
|
||||||
|
NbButtonModule,
|
||||||
|
NbCardModule,
|
||||||
|
NbCheckboxModule,
|
||||||
|
NbDatepickerModule, NbIconModule,
|
||||||
|
NbInputModule,
|
||||||
|
NbRadioModule,
|
||||||
|
NbSelectModule,
|
||||||
|
NbUserModule,
|
||||||
|
} from '@nebular/theme';
|
||||||
|
|
||||||
|
import { ThemeModule } from '../../@theme/theme.module';
|
||||||
|
import { FormsRoutingModule } from './forms-routing.module';
|
||||||
|
import { FormsComponent } from './forms.component';
|
||||||
|
import { FormInputsComponent } from './form-inputs/form-inputs.component';
|
||||||
|
import { FormLayoutsComponent } from './form-layouts/form-layouts.component';
|
||||||
|
import { DatepickerComponent } from './datepicker/datepicker.component';
|
||||||
|
import { ButtonsComponent } from './buttons/buttons.component';
|
||||||
|
import { FormsModule as ngFormsModule } from '@angular/forms';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [
|
||||||
|
ThemeModule,
|
||||||
|
NbInputModule,
|
||||||
|
NbCardModule,
|
||||||
|
NbButtonModule,
|
||||||
|
NbActionsModule,
|
||||||
|
NbUserModule,
|
||||||
|
NbCheckboxModule,
|
||||||
|
NbRadioModule,
|
||||||
|
NbDatepickerModule,
|
||||||
|
FormsRoutingModule,
|
||||||
|
NbSelectModule,
|
||||||
|
NbIconModule,
|
||||||
|
ngFormsModule,
|
||||||
|
],
|
||||||
|
declarations: [
|
||||||
|
FormsComponent,
|
||||||
|
ButtonsComponent,
|
||||||
|
FormInputsComponent,
|
||||||
|
FormLayoutsComponent,
|
||||||
|
DatepickerComponent,
|
||||||
|
],
|
||||||
|
})
|
||||||
|
export class FormsModule { }
|
||||||
Loading…
Add table
Add a link
Reference in a new issue