Skip to content

Latest commit

 

History

History
72 lines (47 loc) · 1.4 KB

list.md

File metadata and controls

72 lines (47 loc) · 1.4 KB

List

Source

The wrapper for the ListItem-component to create lists.

Usage

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 {...} />

Props

The List-component takes the following props:

Name Type Default Required
className string
children ReactNode | Array<ReactNode>
notExpandable boolean false

className

className?: string

A classname string that will be applied to the wrapper container.


children

children?: ReactNode | Array<ReactNode>

The children of the list.


notExpandable

notExpandable?: boolean

Wether the components inside of the list should not be expandable.