Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created December 6, 2018 13:28
Show Gist options
  • Save amandeepmittal/ff07f4496a70484d7adb04999fdbd20e to your computer and use it in GitHub Desktop.
Save amandeepmittal/ff07f4496a70484d7adb04999fdbd20e to your computer and use it in GitHub Desktop.
const StoryList = ({ stories }) => (
<div>
{stories.map(story => (
<h3 key={story.id}>{story.title}</h3>
))}
</div>
);
export default StoryList;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment