Skip to main content

ListItem

List items are used as children of the List component.

They usually begins with a bullet or a number.

Was this section helpful?

Basic ListItem

import {
reactExtension,
List,
ListItem,
} from '@shopify/ui-extensions-react/checkout';

export default reactExtension(
'purchase.checkout.block.render',
() => <Extension />,
);

function Extension() {
return (
<List>
<ListItem>100% organic cotton</ListItem>
</List>
);
}

Preview