blob: c74d4d03db30964cec5c0aa6cdba2de07aa6c296 [file] [log] [blame]
import {NgModule, Pipe, PipeTransform} from '@angular/core';
import {CommonModule} from '@angular/common';
import {FormsModule} from '@angular/forms';
import {EntryComponent} from './entry.component';
@NgModule({
declarations: [EntryComponent],
exports: [EntryComponent],
imports: [CommonModule, FormsModule],
})
export class EntryModule {}