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.
33 lines
1.1 KiB
33 lines
1.1 KiB
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatInputModule } from '@angular/material/input';
|
|
import { MatMenuModule } from '@angular/material/menu';
|
|
import { MatSortModule } from '@angular/material/sort';
|
|
import { MatTableModule } from '@angular/material/table';
|
|
import { RouterModule } from '@angular/router';
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
|
|
|
import { GfSymbolIconModule } from '../symbol-icon/symbol-icon.module';
|
|
import { GfValueModule } from '../value/value.module';
|
|
import { AccountsTableComponent } from './accounts-table.component';
|
|
|
|
@NgModule({
|
|
declarations: [AccountsTableComponent],
|
|
exports: [AccountsTableComponent],
|
|
imports: [
|
|
CommonModule,
|
|
GfSymbolIconModule,
|
|
GfValueModule,
|
|
MatButtonModule,
|
|
MatInputModule,
|
|
MatMenuModule,
|
|
MatSortModule,
|
|
MatTableModule,
|
|
NgxSkeletonLoaderModule,
|
|
RouterModule
|
|
],
|
|
providers: [],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class GfAccountsTableModule {}
|
|
|