Skip to content

Instantly share code, notes, and snippets.

@ASOEstudio
ASOEstudio / app.component.ts
Last active September 19, 2020 15:07
Angular Locale pt-Br, pipeDate, pipeCurrency
import { BrowserModule } from '@angular/platform-browser';
import { NgModule, LOCALE_ID } from '@angular/core';
import { registerLocaleData } from '@angular/common';
import ptBr from '@angular/common/locales/pt';
registerLocaleData(ptBr);
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({