File size: 988 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# 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.
```jsx
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`
<table>
<tr><th>Type</th><td>String</td></tr>
<tr><th>Required</th><td>Yes</td></tr>
</table>
ID of the transaction to be retrieved.
|