mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
820 B
23 lines
820 B
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
import { RouterModule } from '@angular/router';
|
|
import { GfHomeHoldingsModule } from '@ghostfolio/client/components/home-holdings/home-holdings.module';
|
|
import { GfHomeOverviewModule } from '@ghostfolio/client/components/home-overview/home-overview.module';
|
|
|
|
import { ZenPageRoutingModule } from './zen-page-routing.module';
|
|
import { ZenPageComponent } from './zen-page.component';
|
|
|
|
@NgModule({
|
|
declarations: [ZenPageComponent],
|
|
imports: [
|
|
CommonModule,
|
|
GfHomeHoldingsModule,
|
|
GfHomeOverviewModule,
|
|
MatTabsModule,
|
|
RouterModule,
|
|
ZenPageRoutingModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class ZenPageModule {}
|
|
|