Query Billing Transaction
<QueryBillingTransaction transactionId={ transactionId } /> is a React component used to ensure that a single transaction is fetched and ready to display.
Usage
Render the component and pass transactionId as a prop. It does not accept any children, nor does it render any elements to the page. You can use it adjacent to other sibling components which make use of the fetched data made available through the global application state.
import QueryBillingTransaction from 'calypso/components/data/query-billing-transaction';
import Receipt from './receipt';
export default function MyBillingTransaction( { transactionId, transaction } ) {
return (
<div>
<QueryBillingTransaction transactionId={ transactionId } />
<Receipt item={ transaction } />
</div>
);
}
Props
transactionId
| Type | String |
|---|---|
| Required | Yes |
ID of the transaction to be retrieved.