Files
openaccounting-web/src/app/dashboard/dashboard.module.ts

19 lines
442 B
TypeScript
Raw Normal View History

2018-10-19 11:28:08 -04:00
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from '../app-routing.module';
import { SharedModule } from '../shared/shared.module';
import { DashboardPage } from './dashboard';
@NgModule({
declarations: [
DashboardPage
],
imports: [
BrowserModule,
AppRoutingModule,
SharedModule
],
providers: []
})
export class DashboardModule { }