Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import PropTypes from 'prop-types';
import { Component } from 'react';
import ListItem from './list-item';
import ListItemCreateLink from './list-item-create-link';
export default class ReaderSidebarListsList extends Component {
static propTypes = {
lists: PropTypes.array,
path: PropTypes.string.isRequired,
currentListOwner: PropTypes.string,
currentListSlug: PropTypes.string,
};
render() {
const { lists, currentListOwner, currentListSlug, path } = this.props;
return (
<>
{ lists.map( ( list ) => (
<ListItem
key={ list.ID }
list={ list }
path={ path }
currentListOwner={ currentListOwner }
currentListSlug={ currentListSlug }
/>
) ) }
<ListItemCreateLink path={ path } />
</>
);
}
}