# `components-order-history`

Standard typography components for H1, H2, H3, H4, p, and blockquote elements.

## Usage

```
import {OrderHistoryItem} from "@arcteryx/components-order-history";

const OrderHistory = ({OrderHistoryItems}) => (
    <>
        {OrderHistoryItems.map(item => <OrderHistoryItem key={i} order={item} />)}
    </>
);

```
