> For the complete documentation index, see [llms.txt](https://docs.modules.liquidcloud.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.modules.liquidcloud.app/modules/react/order-tracking.md).

# Order Tracking

The Order Tracking module integrates with Order API to provide tracking for a specific order.

#### Usage

```jsx
  import type { FC } from 'react';
  import { LiquidOrderTracking } from '@liquidcloud/modules-react';

  const Component: FC = () => {
    return <LiquidOrderTracking />;
  };

  export default Component;

```
