---
title: UnorderedList
description: >-
Displays a bulleted list of related items. Use to present collections of items
or options where the sequence isn’t critical.
api_name: app-home
source_url:
html: >-
https://shopify.dev/docs/api/app-home/polaris-web-components/structure/unorderedlist
md: >-
https://shopify.dev/docs/api/app-home/polaris-web-components/structure/unorderedlist.md
---
# UnorderedList
Displays a bulleted list of related items. Use to present collections of items or options where the sequence isn’t critical.
## Slots
* children
HTMLElement
The items of the UnorderedList.
Only ListItems are accepted.
## ListItem
Represents a single item within an unordered or ordered list. Use only as a child of `s-unordered-list` or `s-ordered-list` components.
## Slots
* children
HTMLElement
The content of the ListItem.
### Examples
* #### Code
##### jsx
```jsx
Red shirt
Green shirt
Blue shirt
```
##### html
```html
Red shirt
Green shirt
Blue shirt
```
## Examples
Component examples
### Basic usage
Unordered list with nested items
A standard unordered list with nested items demonstrating hierarchical content structure.
### Examples
* #### Unordered list with nested items
##### Description
A standard unordered list with nested items demonstrating hierarchical content structure.
##### jsx
```jsx
Configure payment settings
Set up shipping options
Domestic shipping rates
International shipping zones
Add product descriptions
Enable online payments
Set up shipping rates
Configure tax settings
Add product descriptions
```
##### html
```html
Configure payment settings
Set up shipping options
Domestic shipping rates
International shipping zones
Add product descriptions
Enable online payments
Set up shipping rates
Configure tax settings
Add product descriptions
```