The wrapper for the ListItem
-component to create lists.
You should have the chayns-components
package installed. If that is not the
case already, run
yarn add chayns-components
or
npm i chayns-components
After the chayns-components
package is installed, you can import the component
and use it with React:
import React from 'react'
import { List } from 'chayns-components';
// ...
<List {...} />
The List
-component takes the following props:
Name | Type | Default | Required |
---|---|---|---|
className | string |
||
children | ReactNode | Array<ReactNode> |
||
notExpandable | boolean |
false |
className?: string
A classname string that will be applied to the wrapper container.
children?: ReactNode | Array<ReactNode>
The children of the list.
notExpandable?: boolean
Wether the components inside of the list should not be expandable.