| 12 | import { apiCall, apiCallErrorHandler } from "helpers" |
| 13 | |
| 14 | interface PlaylistTableProps extends WithTranslation { |
| 15 | accessToken: string, |
| 16 | config?: any, |
| 17 | onSetSubtitle: (subtitile: React.JSX.Element) => void |
| 18 | } |
| 19 | |
| 20 | class PlaylistTable extends React.Component<PlaylistTableProps> { |
| 21 | PAGE_SIZE = 20 |
nothing calls this directly
no outgoing calls
no test coverage detected