blob: 35ecd264fca0589cf99c864bd9776239d7a04879 [file] [log] [blame]
Philipp Schrader80587432022-03-05 15:41:22 -08001import {NgModule} from '@angular/core';
2import {CommonModule} from '@angular/common';
3import {EntryComponent} from './entry.component';
Philipp Schrader93ade042022-03-05 17:16:10 -08004import {FormsModule} from '@angular/forms';
Philipp Schrader80587432022-03-05 15:41:22 -08005
6@NgModule({
7 declarations: [EntryComponent],
8 exports: [EntryComponent],
Philipp Schrader93ade042022-03-05 17:16:10 -08009 imports: [CommonModule, FormsModule],
Philipp Schrader80587432022-03-05 15:41:22 -080010})
11export class EntryModule {
12}