HorizontalScrollList
Installation
import {HorizontalScrollList} from 'uxp/components';Examples
<HorizontalScrollList
items={[...Array(15).keys()]}
renderItem={(item, key) => {
return (<div className="item-thumbnail">
{key}
</div>)
}}
/>Properties
Name
Type
Description
items
type
renderItem
type
scrollStep
type
className
type
infinite
type
autoScroll
type
Last updated