2017-05-05 15:49:52 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
2017-08-04 19:27:16 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2019-06-12 10:38:33 +03:00
|
|
|
import { FormsRoutingModule } from './forms-routing.module';
|
2018-11-19 16:57:35 +02:00
|
|
|
import { ButtonsModule } from './buttons/buttons.module';
|
2019-06-12 10:38:33 +03:00
|
|
|
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 { NbInputModule } from '@nebular/theme';
|
2017-05-05 15:49:52 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
2019-06-12 10:38:33 +03:00
|
|
|
NbInputModule,
|
2017-05-06 14:52:41 +03:00
|
|
|
FormsRoutingModule,
|
2018-11-19 16:57:35 +02:00
|
|
|
ButtonsModule,
|
2017-05-05 15:49:52 +03:00
|
|
|
],
|
|
|
|
|
declarations: [
|
2019-06-12 10:38:33 +03:00
|
|
|
FormsComponent,
|
|
|
|
|
FormInputsComponent,
|
|
|
|
|
FormLayoutsComponent,
|
|
|
|
|
DatepickerComponent,
|
2017-05-05 15:49:52 +03:00
|
|
|
],
|
|
|
|
|
})
|
2017-05-06 14:52:41 +03:00
|
|
|
export class FormsModule { }
|