mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-11 20:18:51 +01:00
15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
import { FormsRoutingModule, routedComponents } from './forms-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ThemeModule,
|
|
FormsRoutingModule,
|
|
],
|
|
declarations: [
|
|
...routedComponents,
|
|
],
|
|
})
|
|
export class FormsModule { }
|