17 lines
516 B
TypeScript
17 lines
516 B
TypeScript
|
import { CommonModule } from '@angular/common';
|
||
|
import { NgModule } from '@angular/core';
|
||
|
|
||
|
import { PollListComponent } from './components/poll-list/poll-list.component';
|
||
|
import { PollsRoutingModule } from './polls-routing.module';
|
||
|
import { SharedModule } from '../../shared/shared.module';
|
||
|
|
||
|
/**
|
||
|
* App module for the history feature.
|
||
|
* Declares the used components.
|
||
|
*/
|
||
|
@NgModule({
|
||
|
imports: [CommonModule, PollsRoutingModule, SharedModule],
|
||
|
declarations: [PollListComponent]
|
||
|
})
|
||
|
export class PollsModule {}
|