Save Bill Works
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { LOCALE_ID, NgModule } from '@angular/core';
|
||||
import { registerLocaleData } from '@angular/common';
|
||||
import enIN from '@angular/common/locales/en-IN';
|
||||
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AppComponent } from './app.component';
|
||||
@ -18,9 +20,11 @@ import { LayoutModule } from '@angular/cdk/layout';
|
||||
import { LogoutComponent } from './auth/logout/logout.component';
|
||||
import { LoginComponent } from './auth/login/login.component';
|
||||
import { HomeComponent } from './home/home.component';
|
||||
import {CoreModule} from './core/core.module';
|
||||
import {ReactiveFormsModule} from '@angular/forms';
|
||||
import {SharedModule} from './shared/shared.module';
|
||||
import { CoreModule } from './core/core.module';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { SharedModule } from './shared/shared.module';
|
||||
|
||||
registerLocaleData(enIN);
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
@ -48,7 +52,9 @@ import {SharedModule} from './shared/shared.module';
|
||||
CoreModule,
|
||||
SharedModule
|
||||
],
|
||||
providers: [],
|
||||
providers: [
|
||||
{provide: LOCALE_ID, useValue: 'en-IN'},
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
|
||||
Reference in New Issue
Block a user