import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { HistoryLogRoutingModule } from './history-log-routing.module'; import { PageComponent } from './page/page.component'; import { MatTableModule } from '@angular/material/table'; import { SharedModule } from '../shared/shared.module'; import { MatListModule } from '@angular/material/list'; @NgModule({ declarations: [ PageComponent ], imports: [ CommonModule, HistoryLogRoutingModule, MatTableModule, SharedModule, MatListModule ] }) export class HistoryLogModule { }