Skip to content

Instantly share code, notes, and snippets.

@drborges
Last active October 20, 2016 16:26
Show Gist options
  • Select an option

  • Save drborges/f3edaae743efdc4146df0c3211e6876b to your computer and use it in GitHub Desktop.

Select an option

Save drborges/f3edaae743efdc4146df0c3211e6876b to your computer and use it in GitHub Desktop.
const ListView = ({ mode, children, ...rest }) {
return (
<div className={`list-view flex-${mode}`}>
<ListItem {...rest} />
{children}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment