Skip to content

Instantly share code, notes, and snippets.

@CharlieGreenman
Created October 10, 2019 10:44
Show Gist options
  • Save CharlieGreenman/ca6c7c55b608ddf448e0e030fe466d03 to your computer and use it in GitHub Desktop.
Save CharlieGreenman/ca6c7c55b608ddf448e0e030fe466d03 to your computer and use it in GitHub Desktop.
import { LOCALE_ID, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from '../src/app/app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
providers: [ { provide: LOCALE_ID, useValue: 'fr' } ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment