aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-tables/shared-tables.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/shared-tables/shared-tables.module.ts')
-rw-r--r--client/src/app/shared/shared-tables/shared-tables.module.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-tables/shared-tables.module.ts b/client/src/app/shared/shared-tables/shared-tables.module.ts
new file mode 100644
index 000000000..c528365a0
--- /dev/null
+++ b/client/src/app/shared/shared-tables/shared-tables.module.ts
@@ -0,0 +1,25 @@
1
2import { NgModule } from '@angular/core'
3import { SharedMainModule } from '../shared-main/shared-main.module'
4import { TableExpanderIconComponent } from './table-expander-icon.component'
5import { VideoCellComponent } from './video-cell.component'
6
7@NgModule({
8 imports: [
9 SharedMainModule
10 ],
11
12 declarations: [
13 VideoCellComponent,
14 TableExpanderIconComponent
15 ],
16
17 exports: [
18 VideoCellComponent,
19 TableExpanderIconComponent
20 ],
21
22 providers: [
23 ]
24})
25export class SharedTablesModule { }