Skip to content

Instantly share code, notes, and snippets.

@scsskid
Last active October 27, 2020 08:44
Show Gist options
  • Save scsskid/311bf93d63d75882a9801617996b9e64 to your computer and use it in GitHub Desktop.
Save scsskid/311bf93d63d75882a9801617996b9e64 to your computer and use it in GitHub Desktop.
[Random React Snippets] #react
// Elegant Composition
const UnorderedList = ({children}) => (
<ul>
{
children.map((child, i) => <li key={i}>{child}</li>
}
</ul>
)
const App = () => (
<UnorderedList>
<a href="http://example.com">Example</a>
<span>Example</span>
Text
</UnorderedList>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment