mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
38 lines
893 B
TypeScript
38 lines
893 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
import { NgaModule } from '../../theme/nga.module';
|
||
|
|
|
||
|
|
import { Dashboard } from './dashboard.component';
|
||
|
|
import { routing } from './dashboard.routing';
|
||
|
|
|
||
|
|
import { PopularApp } from './popularApp';
|
||
|
|
import { PieChart } from './pieChart';
|
||
|
|
import { TrafficChart } from './trafficChart';
|
||
|
|
import { UsersMap } from './usersMap';
|
||
|
|
import { LineChart } from './lineChart';
|
||
|
|
import { Feed } from './feed';
|
||
|
|
import { Todo } from './todo';
|
||
|
|
import { Calendar } from './calendar';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
NgaModule,
|
||
|
|
routing
|
||
|
|
],
|
||
|
|
declarations: [
|
||
|
|
PopularApp,
|
||
|
|
PieChart,
|
||
|
|
TrafficChart,
|
||
|
|
UsersMap,
|
||
|
|
LineChart,
|
||
|
|
Feed,
|
||
|
|
Todo,
|
||
|
|
Calendar,
|
||
|
|
Dashboard
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export default class DashboardModule {}
|