List
A vertical list of items with optional descriptions.
Preview
Props
| Prop | Type | Default | Description |
|---|---|---|---|
items | array | [] | { title, description } objects |
Usage
const { List } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
React.createElement(List, { items: [{ title: 'Item one', description: 'Description' }] })
);