blob: d454c2e2f1172279fb887ebad3232a4362a8396d [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';
4
5@NgModule({
6 declarations: [EntryComponent],
7 exports: [EntryComponent],
8 imports: [CommonModule],
9})
10export class EntryModule {
11}