---
title: ListItem
description: |-
List items are used as children of the `List` component.
They usually begins with a bullet or a number.
api_version: 2025-07
api_name: checkout-ui-extensions
source_url:
html: >-
https://shopify.dev/docs/api/checkout-ui-extensions/2025-07/components/other/listitem
md: >-
https://shopify.dev/docs/api/checkout-ui-extensions/2025-07/components/other/listitem.md
---
Migrate to Polaris
Version 2025-07 is the last API version to support React-based UI components. Later versions use [web components](https://shopify.dev/docs/api/checkout-ui-extensions/latest/polaris-web-components), native UI elements with built-in accessibility, better performance, and consistent styling with [Shopify's design system](https://shopify.dev/docs/apps/design). Check out the [migration guide](https://shopify.dev/docs/api/checkout-ui-extensions/2026-04-rc/upgrading-to-2026-04) to upgrade your extension.
# ListItem
List items are used as children of the `List` component.
They usually begins with a bullet or a number.
### Support Targets (50)
### Supported targets
* Checkout::Actions::RenderBefore
* Checkout::CartLineDetails::RenderAfter
* Checkout::CartLines::RenderAfter
* Checkout::Contact::RenderAfter
* Checkout::CustomerInformation::RenderAfter
* Checkout::DeliveryAddress::RenderBefore
* Checkout::Dynamic::Render
* Checkout::PickupLocations::RenderAfter
* Checkout::PickupLocations::RenderBefore
* Checkout::PickupPoints::RenderAfter
* Checkout::PickupPoints::RenderBefore
* Checkout::Reductions::RenderAfter
* Checkout::Reductions::RenderBefore
* Checkout::ShippingMethodDetails::RenderAfter
* Checkout::ShippingMethodDetails::RenderExpanded
* Checkout::ShippingMethods::RenderAfter
* Checkout::ShippingMethods::RenderBefore
* Checkout::ThankYou::CartLineDetails::RenderAfter
* Checkout::ThankYou::CartLines::RenderAfter
* Checkout::ThankYou::CustomerInformation::RenderAfter
* Checkout::ThankYou::Dynamic::Render
* purchase.checkout.actions.render-before
* purchase.checkout.block.render
* purchase.checkout.cart-line-item.render-after
* purchase.checkout.cart-line-list.render-after
* purchase.checkout.contact.render-after
* purchase.checkout.delivery-address.render-after
* purchase.checkout.delivery-address.render-before
* purchase.checkout.footer.render-after
* purchase.checkout.header.render-after
* purchase.checkout.payment-method-list.render-after
* purchase.checkout.payment-method-list.render-before
* purchase.checkout.pickup-location-list.render-after
* purchase.checkout.pickup-location-list.render-before
* purchase.checkout.pickup-location-option-item.render-after
* purchase.checkout.pickup-point-list.render-after
* purchase.checkout.pickup-point-list.render-before
* purchase.checkout.reductions.render-after
* purchase.checkout.reductions.render-before
* purchase.checkout.shipping-option-item.details.render
* purchase.checkout.shipping-option-item.render-after
* purchase.checkout.shipping-option-list.render-after
* purchase.checkout.shipping-option-list.render-before
* purchase.thank-you.announcement.render
* purchase.thank-you.block.render
* purchase.thank-you.cart-line-item.render-after
* purchase.thank-you.cart-line-list.render-after
* purchase.thank-you.customer-information.render-after
* purchase.thank-you.footer.render-after
* purchase.thank-you.header.render-after
Examples
## Preview

### Examples
* #### Basic ListItem
##### React
```tsx
import {
reactExtension,
List,
ListItem,
} from '@shopify/ui-extensions-react/checkout';
export default reactExtension(
'purchase.checkout.block.render',
() => ,
);
function Extension() {
return (
100% organic cotton
);
}
```
##### JS
```js
import {extension, List, ListItem} from '@shopify/ui-extensions/checkout';
export default extension('purchase.checkout.block.render', (root) => {
const list = root.createComponent(List, undefined, [
root.createComponent(ListItem, undefined, '100% organic cotton'),
]);
root.appendChild(list);
});
```
## Related
[Component - List](list)