mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
feat(dashboard): move status card to separate control, add tabs
This commit is contained in:
parent
2afb26810e
commit
c483e46e71
7 changed files with 143 additions and 85 deletions
18
src/app/pages/dashboard/dashboard.module.ts
Normal file
18
src/app/pages/dashboard/dashboard.module.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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 { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue