import { BaseItemKind } from '@jellyfin/sdk/lib/generated-client/models/base-item-kind'; import React, { FC } from 'react'; import GenresItemsContainer from './GenresItemsContainer'; import { ParentId } from 'types/library'; import { CollectionType } from '@jellyfin/sdk/lib/generated-client/models/collection-type'; interface GenresViewProps { parentId: ParentId; collectionType: CollectionType | undefined; itemType: BaseItemKind[]; } const GenresView: FC = ({ parentId, collectionType, itemType }) => { return ( ); }; export default GenresView;