10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
|
||
|
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [TranslateModule.forRoot({})],
|
||
|
exports: []
|
||
|
})
|
||
|
export class AppTranslateModule {}
|