Last active
October 20, 2016 16:26
-
-
Save drborges/f3edaae743efdc4146df0c3211e6876b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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