Philipp Schrader | 8058743 | 2022-03-05 15:41:22 -0800 | [diff] [blame^] | 1 | import {NgModule} from '@angular/core'; |
2 | import {CommonModule} from '@angular/common'; | ||||
3 | import {EntryComponent} from './entry.component'; | ||||
4 | |||||
5 | @NgModule({ | ||||
6 | declarations: [EntryComponent], | ||||
7 | exports: [EntryComponent], | ||||
8 | imports: [CommonModule], | ||||
9 | }) | ||||
10 | export class EntryModule { | ||||
11 | } |