HorizontalScrollList
Installation
import { HorizontalScrollList } from 'uxp/components';Signature
const HorizontalScrollList: React.FunctionComponent<IHSListProps>Examples
<HorizontalScrollList
items={[...Array(15).keys()]}
renderItem={(item, key) => {
return (<div className="item-thumbnail">
{key}
</div>)
}}
/>Properties
Name
Type
Mandatory
Default Value
Example Value
Related Types
Last updated