Import
import { List } from '@contentful/f36-components';// orimport { List } from '@contentful/f36-list';
Examples
Basic
function ListBasicExample() {return (<List><List.Item>List Item 1</List.Item><List.Item>List Item with <TextLink>text link</TextLink></List.Item><List.Item>List Item 3</List.Item><List.Item><List><List.Item>Sublist Item 1</List.Item><List.Item>Sublist Item 2</List.Item></List></List.Item></List>);}
as
property
By default List
has an ul
tag and displays as a bulleted (unordered) list. But you can change it by providing as
prop with two possible values: ul
and ol
.
function ListWithAsExample() {return (<><List as="ul"><List.Item>List Item 1</List.Item><List.Item>List Item 2</List.Item><List.Item>List Item 3</List.Item></List><List as="ol"><List.Item>List Item 1</List.Item><List.Item>List Item 2</List.Item><List.Item>List Item 3</List.Item></List></>);}
Props (API reference)
Open in StorybookList
Name | Type | Default |
---|---|---|
as | HTML Tag or React Component (e.g. div, span, etc) | |
children | ReactNode | |
className | string CSS class to be appended to the root element | |
testId | string A [data-test-id] attribute used for testing purposes |
List.Item
Name | Type | Default |
---|---|---|
children | ReactNode | |
className | string CSS class to be appended to the root element | |
css | string number false true ComponentSelector Keyframes SerializedStyles ArrayInterpolation<undefined> ObjectInterpolation<undefined> (theme: any) => Interpolation<undefined> | |
testId | string A [data-test-id] attribute used for testing purposes | cf-ui-list-item |