diff --git a/ui/component/claimMenuList/claim-preview-loading.jsx b/ui/component/claimMenuList/claim-preview-loading.jsx deleted file mode 100644 index 53f3ade50..000000000 --- a/ui/component/claimMenuList/claim-preview-loading.jsx +++ /dev/null @@ -1,30 +0,0 @@ -// @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; diff --git a/ui/component/claimMenuList/claim-preview-no-content.jsx b/ui/component/claimMenuList/claim-preview-no-content.jsx deleted file mode 100644 index 75acaba64..000000000 --- a/ui/component/claimMenuList/claim-preview-no-content.jsx +++ /dev/null @@ -1,32 +0,0 @@ -// @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; diff --git a/ui/component/claimMenuList/claim-preview-no-mature.jsx b/ui/component/claimMenuList/claim-preview-no-mature.jsx deleted file mode 100644 index f0310e06e..000000000 --- a/ui/component/claimMenuList/claim-preview-no-mature.jsx +++ /dev/null @@ -1,33 +0,0 @@ -// @flow -import classnames from 'classnames'; -import React from 'react'; -import Empty from 'component/common/empty'; - -type Props = { - isChannel: boolean, - type: string, - message: string, -}; - -function ClaimPreviewHidden(props: Props) { - const { isChannel, type, message } = props; - return ( -
  • -
    -
    - -
    -
  • - ); -} - -export default ClaimPreviewHidden;