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';
|
2017-05-06 14:52:41 +03:00
|
|
|
import { FormsRoutingModule, routedComponents } from './forms-routing.module';
|
2018-11-19 16:57:35 +02:00
|
|
|
import { ButtonsModule } from './buttons/buttons.module';
|
2017-05-05 15:49:52 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
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: [
|
|
|
|
|
...routedComponents,
|
|
|
|
|
],
|
|
|
|
|
})
|
2017-05-06 14:52:41 +03:00
|
|
|
export class FormsModule { }
|