import React from 'react'; import PropTypes from 'prop-types'; import { ItemList } from '../item-list/ItemList'; export function PlaylistPageMedia(props) { return ( ); } PlaylistPageMedia.propTypes = { media: PropTypes.array.isRequired, playlistId: PropTypes.string.isRequired, itemsCountCallback: PropTypes.func, itemsLoadCallback: PropTypes.func, hidePlaylistOptions: PropTypes.bool, }; PlaylistPageMedia.defaultProps = { hidePlaylistOptions: true, };