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.
25 lines
1.0 KiB
25 lines
1.0 KiB
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 { GfAccountDetailDialogModule } from '@ghostfolio/client/components/account-detail-dialog/account-detail-dialog.module';
|
|
import { GfAccountsTableModule } from '@ghostfolio/client/components/accounts-table/accounts-table.module';
|
|
|
|
import { AccountsPageRoutingModule } from './accounts-page-routing.module';
|
|
import { AccountsPageComponent } from './accounts-page.component';
|
|
import { GfCreateOrUpdateAccountDialogModule } from './create-or-update-account-dialog/create-or-update-account-dialog.module';
|
|
|
|
@NgModule({
|
|
declarations: [AccountsPageComponent],
|
|
imports: [
|
|
AccountsPageRoutingModule,
|
|
CommonModule,
|
|
GfAccountDetailDialogModule,
|
|
GfAccountsTableModule,
|
|
GfCreateOrUpdateAccountDialogModule,
|
|
MatButtonModule,
|
|
RouterModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class AccountsPageModule {}
|
|
|