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
786 B

import { GfBenchmarkComponent } from '@ghostfolio/ui/benchmark';
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 { GfCreateWatchlistItemDialogModule } from './create-watchlist-item-dialog/create-watchlist-item-dialog.module';
import { HomeWatchlistComponent } from './home-watchlist.component';
@NgModule({
declarations: [HomeWatchlistComponent],
exports: [HomeWatchlistComponent],
imports: [
CommonModule,
GfBenchmarkComponent,
GfCreateWatchlistItemDialogModule,
MatButtonModule,
RouterModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class GfHomeWatchlistModule {}