react-toolbox
Version:
A set of complementary tools to ReactJS.
30 lines (28 loc) • 978 B
Plain Text
const ListTest = () => (
<List selectable ripple>
<ListSubHeader caption='Explore characters' />
<ListItem
avatar='https://dl.dropboxusercontent.com/u/2247264/assets/m.jpg'
caption='Dr. Manhattan'
legend="Jonathan 'Jon' Osterman"
rightIcon='star'
/>
<ListItem
avatar='https://dl.dropboxusercontent.com/u/2247264/assets/o.jpg'
caption='Ozymandias'
legend='Adrian Veidt'
rightIcon='star'
/>
<ListItem
avatar='https://dl.dropboxusercontent.com/u/2247264/assets/r.jpg'
caption='Rorschach'
legend='Walter Joseph Kovacs'
rightIcon='star'
/>
<ListSubHeader caption='Configuration' />
<ListCheckbox checked caption='Notify new comics' legend='You will receive a notification when a new one is published' />
<ListItem caption='Contact the publisher' leftIcon='send' />
<ListItem caption='Remove this publication' leftIcon='delete' />
</List>
);
return <ListTest />;