// @flow import classnames from 'classnames'; import React from 'react'; import Empty from 'component/common/empty'; type Props = { isChannel: boolean, type: string, }; function ClaimPreviewNoContent(props: Props) { const { isChannel, type } = props; return (
  • ); } export default ClaimPreviewNoContent;