76ce18cfd8
- core modules contains core services - shared module contains "dumb" components (directives, models) - used by nearly all modules - site, it's children and projector are now feature modules - full lazy loading with independent routing - routing for children (extremely helpful for plugins (later))
13 lines
437 B
TypeScript
13 lines
437 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { AgendaRoutingModule } from './agenda-routing.module';
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
import { AgendaListComponent } from './agenda-list/agenda-list.component';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, AgendaRoutingModule, SharedModule],
|
|
declarations: [AgendaListComponent]
|
|
})
|
|
export class AgendaModule {}
|