import React from 'react'; import {IPropsItemListInfo} from '../ListItemInfo'; class CopyrightComponent extends React.Component { render() { const {item} = this.props; if (item.copyrightholder) { const title = item.usageterms || item.copyrightnotice || ''; return ( © {item.copyrightholder} ); } return null; } } export const copyright = CopyrightComponent;