Skip to content

Instantly share code, notes, and snippets.

@rdundon
Created September 4, 2019 15:25
Show Gist options
  • Save rdundon/6f1c2e5c9cd7d39db950c4d713ca0c6d to your computer and use it in GitHub Desktop.
Save rdundon/6f1c2e5c9cd7d39db950c4d713ca0c6d to your computer and use it in GitHub Desktop.
Show JSON component
// Just shows props as JSON, To be used for testing and as a stub/placeholder
const ShowJSON = (props) => {
return ( <pre>
{JSON.stringify(props)}
</pre> );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment