Skip to content

Instantly share code, notes, and snippets.

@stereosteve
Created September 17, 2014 17:37
Show Gist options
  • Save stereosteve/8cbabc1e0235b5f7fc33 to your computer and use it in GitHub Desktop.
Save stereosteve/8cbabc1e0235b5f7fc33 to your computer and use it in GitHub Desktop.
React debug component
var Debug = React.createClass({
render: function() {
var obj = this.props.obj
var json = JSON.stringify(obj, undefined, 2)
return <pre>{json}</pre>
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment