mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-27 11:46:10 +01:00
feat(dashboard): add contacts and room selector components
This commit is contained in:
parent
d351b3d6ff
commit
61869dad7a
18 changed files with 374 additions and 19 deletions
|
|
@ -1,20 +1,25 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { NgaTabsetModule } from '@akveo/nga-theme';
|
||||
import { NgaTabsetModule, NgaUserModule } from '@akveo/nga-theme';
|
||||
|
||||
import { SharedModule } from '../../shared.module';
|
||||
import { DashboardComponent } from './dashboard.component';
|
||||
import { StatusCardsComponent } from './status-cards/status-cards.component';
|
||||
import { TemperatureDraggerComponent } from './temperature-dragger/temperature-dragger.component';
|
||||
import { ContactsComponent } from './contacts/contacts.component';
|
||||
import { RoomSelectorComponent } from './room-selector/room-selector.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
SharedModule,
|
||||
NgaTabsetModule,
|
||||
NgaUserModule,
|
||||
SharedModule,
|
||||
],
|
||||
declarations: [
|
||||
DashboardComponent,
|
||||
StatusCardsComponent,
|
||||
TemperatureDraggerComponent,
|
||||
ContactsComponent,
|
||||
RoomSelectorComponent,
|
||||
],
|
||||
})
|
||||
export class DashboardModule { }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue