// @flow import React from 'react'; import ClaimList from 'component/claimList'; import Card from 'component/common/card'; import Button from 'component/button'; import * as PAGES from 'constants/pages'; import Icon from 'component/common/icon'; import * as ICONS from 'constants/icons'; import { COLLECTIONS_CONSTS } from 'lbry-redux'; type Props = { id: string, url: string, isMine: boolean, collectionUrls: Array, collectionName: string, collection: any, createUnpublishedCollection: (string, Array, ?string) => void, }; export default function CollectionContent(props: Props) { const { collectionUrls, collectionName, id, url } = props; return ( {collectionName} } titleActions={
{/* TODO: BUTTON TO SAVE COLLECTION - Probably save/copy modal */}
} body={ } /> ); }