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.
22 lines
704 B
22 lines
704 B
import { GfToggleModule } from '@ghostfolio/client/components/toggle/toggle.module';
|
|
import { GfHoldingsTableComponent } from '@ghostfolio/ui/holdings-table';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { HomeHoldingsComponent } from './home-holdings.component';
|
|
|
|
@NgModule({
|
|
declarations: [HomeHoldingsComponent],
|
|
imports: [
|
|
CommonModule,
|
|
GfHoldingsTableComponent,
|
|
GfToggleModule,
|
|
MatButtonModule,
|
|
RouterModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class GfHomeHoldingsModule {}
|
|
|