1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00
Peertube/client/src/app/shared/shared-tables/shared-tables.module.ts
2023-10-11 11:42:57 +02:00

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 { }