// @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'; type Props = { collectionUrls: Array, collectionName: string, collection: any, createUnpublishedCollection: (string, Array, ?string) => void, id: string, claim: Claim, isMine: boolean, }; export default function CollectionContent(props: Props) { const { collectionUrls, collectionName, id } = props; return ( {collectionName} } titleActions={ <> {/* TODO: BUTTON TO SAVE COLLECTION - Probably save/copy modal */}