e6199a8dfb
* docs(i18n): add internationalization (i18n) guide * docs(cb-i18n): revamped to System.import the translation file
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
// #docregion
|
|
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
@NgModule({
|
|
imports: [ BrowserModule ],
|
|
declarations: [ AppComponent ],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
|
|
export class AppModule { }
|