aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/about/about.module.ts
blob: b7667ff244f1d0b78b32ffd05b0241f8d23a8392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { NgModule } from '@angular/core';
import { ThemeModule } from '../../@theme/theme.module';

import { AboutModalComponent } from './about-modal/about-modal.component';

@NgModule({
  imports: [
    ThemeModule,
  ],
  declarations: [
    AboutModalComponent,
  ],
  entryComponents: [
    AboutModalComponent,
  ],
})
export class AboutModule { }