Skip to content

Instantly share code, notes, and snippets.

@rdundon
Last active April 4, 2025 17:51
Show Gist options
  • Save rdundon/a4ea90c450cfcdc05f6599bd47959814 to your computer and use it in GitHub Desktop.
Save rdundon/a4ea90c450cfcdc05f6599bd47959814 to your computer and use it in GitHub Desktop.
Show JSON (React Native Version)
// Just shows props as JSON, To be used for testing and as a stub/placeholder
// Like https://gist.github.com/rdundon/6f1c2e5c9cd7d39db950c4d713ca0c6d , but React Native
const ShowJSON = (props) => {
return ( <Text>
{JSON.stringify(props)}
</Text> );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment