import { FormattedBitcoinAmount } from "src/components/FormattedBitcoinAmount"; import { Boostagram } from "src/types"; function PodcastingInfo({ boost }: { boost: Boostagram }) { return ( <> {boost.message && (

Message

{boost.message}

)} {boost.podcast && (

Podcast

{boost.podcast}

)} {boost.episode && (

Episode

{boost.episode}

)} {boost.action && (

Action

{boost.action}

)} {boost.ts && (

Timestamp

{boost.ts}

)} {boost.valueMsatTotal && (

Total amount

)} {boost.senderName && (

Sender

{boost.senderName}

)} {boost.appName && (

App

{boost.appName}

)} ); } export default PodcastingInfo;