blob: b4d81c096c3c5877be9bb30576daa05e2e2c4f9e [file] [log] [blame]
Philipp Schrader80587432022-03-05 15:41:22 -08001import {NgModule} from '@angular/core';
2import {CommonModule} from '@angular/common';
Philipp Schrader93ade042022-03-05 17:16:10 -08003import {FormsModule} from '@angular/forms';
Philipp Schrader80587432022-03-05 15:41:22 -08004
Alex Perryf82524c2022-03-09 20:04:47 -08005import {CounterButtonModule} from '../counter_button/counter_button.module';
6import {EntryComponent} from './entry.component';
7
Philipp Schrader80587432022-03-05 15:41:22 -08008@NgModule({
9 declarations: [EntryComponent],
10 exports: [EntryComponent],
Alex Perryf82524c2022-03-09 20:04:47 -080011 imports: [CommonModule, FormsModule, CounterButtonModule],
Philipp Schrader80587432022-03-05 15:41:22 -080012})
13export class EntryModule {
14}