Skip to content

Instantly share code, notes, and snippets.

@axcellence
Created January 19, 2022 15:21
Show Gist options
  • Save axcellence/caa5d21fcc433103d6d39de3b299d235 to your computer and use it in GitHub Desktop.
Save axcellence/caa5d21fcc433103d6d39de3b299d235 to your computer and use it in GitHub Desktop.
const Dump = ({ data }) => {
if (!data) return null;
return (
<pre className="bg-gray-100 text-sm p-4">
<code>{JSON.stringify(data, null, 4)}</code>
</pre>
);
};
export default Dump;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment