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