Skip to content

Instantly share code, notes, and snippets.

@Joeltbond
Created January 6, 2018 22:49
Show Gist options
  • Save Joeltbond/78a0ad625c864af82b61b51e756a46f9 to your computer and use it in GitHub Desktop.
Save Joeltbond/78a0ad625c864af82b61b51e756a46f9 to your computer and use it in GitHub Desktop.
Dumb Component
import React from "react";
export default ({ notes }) => (
<div>
<div>Notes: {Object.keys(notes).join(", ")}</div>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment