|
- import { NgModule } from '@angular/core';
- import { BrowserModule } from '@angular/platform-browser';
-
- import { AppRoutingModule } from './app-routing.module';
- import { AppComponent } from './app.component';
- import { LoginComponent } from './login/login.component';
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
- import { DashboardComponent } from './dashboard/dashboard.component';
- import { GraphComponent } from './dashboard/graph/graph.component';
- import { TableComponent } from './dashboard/table/table.component';
- import { ReportComponent } from './dashboard/report/report.component';
- import { SettingsComponent } from './dashboard/settings/settings.component';
-
- @NgModule({
- declarations: [
- AppComponent,
- LoginComponent,
- DashboardComponent,
- GraphComponent,
- TableComponent,
- ReportComponent,
- SettingsComponent
- ],
- imports: [
- BrowserModule,
- AppRoutingModule,
- BrowserAnimationsModule
- ],
- providers: [],
- bootstrap: [AppComponent]
- })
- export class AppModule { }
|