Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Created May 18, 2017 06:00
Show Gist options
  • Save moonformeli/57c52728def6d604d38f75a0e75b4e68 to your computer and use it in GitHub Desktop.
Save moonformeli/57c52728def6d604d38f75a0e75b4e68 to your computer and use it in GitHub Desktop.
functional_default.js
function ItemList({ items = []}) {
return (
// Use items here. It'll default to an empty array.
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment