forked from EVOgeek/Vmeda.Online
21 lines
605 B
TypeScript
21 lines
605 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicPageModule } from 'ionic-angular';
|
|
import { CoreSplitViewPlaceholderPage } from './placeholder';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { CoreComponentsModule } from '../../components.module';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
CoreSplitViewPlaceholderPage,
|
|
],
|
|
imports: [
|
|
CoreComponentsModule,
|
|
IonicPageModule.forChild(CoreSplitViewPlaceholderPage),
|
|
TranslateModule.forChild()
|
|
],
|
|
exports: [
|
|
CoreSplitViewPlaceholderPage
|
|
]
|
|
})
|
|
export class CorePlaceholderPageModule { }
|