Created
January 6, 2018 22:49
-
-
Save Joeltbond/78a0ad625c864af82b61b51e756a46f9 to your computer and use it in GitHub Desktop.
Dumb Component
This file contains 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
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