import React from 'react'; import { FormattedMessage as T } from 'react-intl'; /** * Manual journal details header. */ export default function ManualJournalDrawerHeader({ manualJournal: { amount_formatted, journal_type, journal_number, reference, currency_code, }, }) { return (

{amount_formatted}

{journal_type}

{journal_number}

{reference}

{currency_code}

); }