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

src.app.core.core.module.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { NgModule } from '@angular/core';
import { SharedModule } from '@shared/shared.module';
import { RouterModule } from '@angular/router';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { LoginComponent } from './components/login/login.component';
import { ParentComponent } from './components/parent/parent.component';
import { CommonModule } from '@angular/common';
import { OrganismsModule } from '../organisms/organisms.module';
import { TranslateModule } from '@ngx-translate/core';

@NgModule({
    declarations: [
        LoginComponent,
        ParentComponent
    ],
    imports: [
        CommonModule,
        FormsModule,
        HttpClientModule,
        OrganismsModule,
        RouterModule,
        SharedModule,
        TranslateModule
    ],

})
export class CoreModule { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy