aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/about/about.module.ts
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-11-30 01:28:14 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-11-30 01:28:14 +0100
commit680b5c22e986a8421c63d7b99b5f6a4dd04fde30 (patch)
tree94fc8800a28c98cc3abe241f2c9809625198a407 /webapp/src/app/pages/about/about.module.ts
parentcd8d64e86de540aea78a253c5fcc7826e8f15456 (diff)
Added Help menu with doc link and About modal.
Diffstat (limited to 'webapp/src/app/pages/about/about.module.ts')
-rw-r--r--webapp/src/app/pages/about/about.module.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/webapp/src/app/pages/about/about.module.ts b/webapp/src/app/pages/about/about.module.ts
new file mode 100644
index 0000000..b7667ff
--- /dev/null
+++ b/webapp/src/app/pages/about/about.module.ts
@@ -0,0 +1,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 { }