ngx-admin/docs/app/pages/docs/landing-docs.module.ts

41 lines
1,018 B
TypeScript
Raw Normal View History

2019-07-16 08:38:11 +03:00
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { NgModule } from '@angular/core';
// modules
import { NgxLandingThemeModule } from '../../@theme/theme.module';
import { SwiperModule } from 'ngx-swiper-wrapper';
import { NgxBlocksModule } from '../../blocks/blocks.module';
import { LandingDocsRoutingModule } from './landing-docs-routing.module';
// modules
// components
import { LandingDocsComponent } from './landing-docs.component';
import { NgxAdminLandingPageComponent } from './page/ngx-admin-landing-page.component';
// components
/*import { NgxMenuService } from '../@theme/services/menu.service';*/
const COMPONENTS = [
LandingDocsComponent,
NgxAdminLandingPageComponent,
];
@NgModule({
declarations: [
...COMPONENTS,
],
imports: [
NgxLandingThemeModule,
SwiperModule,
LandingDocsRoutingModule,
NgxBlocksModule,
],
})
export class LandingDocsModule {
}