]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-tables/shared-tables.module.ts
Refactoring margin and padding mixins
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-tables / shared-tables.module.ts
1
2 import { NgModule } from '@angular/core'
3 import { SharedMainModule } from '../shared-main/shared-main.module'
4 import { TableExpanderIconComponent } from './table-expander-icon.component'
5 import { 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 })
25 export class SharedTablesModule { }