aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-tables/shared-tables.module.ts
blob: c528365a0bf67a9a18523246daa7229ec6da159f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { TableExpanderIconComponent } from './table-expander-icon.component'
import { VideoCellComponent } from './video-cell.component'

@NgModule({
  imports: [
    SharedMainModule
  ],

  declarations: [
    VideoCellComponent,
    TableExpanderIconComponent
  ],

  exports: [
    VideoCellComponent,
    TableExpanderIconComponent
  ],

  providers: [
  ]
})
export class SharedTablesModule { }