mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
18 lines
458 B
TypeScript
18 lines
458 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { NgaTabsetModule } from '@nga/theme';
|
|
|
|
import { SharedModule } from '../../shared.module';
|
|
import { DashboardComponent } from './dashboard.component';
|
|
import { StatusCardsComponent } from './status-cards/status-cards.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
SharedModule,
|
|
NgaTabsetModule,
|
|
],
|
|
declarations: [
|
|
DashboardComponent,
|
|
StatusCardsComponent,
|
|
],
|
|
})
|
|
export class DashboardModule { }
|