mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
24 lines
511 B
TypeScript
24 lines
511 B
TypeScript
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 { }
|