import React from 'react'; import { ListCheckbox, ListSubHeader, List, ListItem, ListDivider } from '../../components/list'; const listStyle = { border: '1px solid #EEE', display: 'inline-block', minWidth: 340 }; const ListTest = () => (
With simple text and icons

This list can be used inside a Drawer for a list of options or as navigation.

Two text lines, avatar and right icon

Useful for a list of contacts or similar.

Two line options and checkbox items

It can be used to embed little checkboxes in the list. These behave as checkboxes.

Avatar, sinle text and icon

Similar to a previous one but only with one text line

Simple with just one text line

The most simple list.

); export default ListTest;