All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.modules.environment.environment.module.ts Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-FileCopyrightText: 2017-2024 Enedis
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 */

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { EnvironmentsComponent } from './list/environments.component';
import { RouterModule } from '@angular/router';
import { environmentsRoutes } from '@modules/environment/environments.routes';
import { MoleculesModule } from '../../molecules/molecules.module';
import { TranslateModule } from '@ngx-translate/core';
import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap';


@NgModule({
    declarations: [
        EnvironmentsComponent
    ],
    imports: [
        CommonModule,
        RouterModule.forChild(environmentsRoutes),
        MoleculesModule,
        TranslateModule,
        NgbTooltipModule
    ]
})
export class EnvironmentModule {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy