Skip to content

Instantly share code, notes, and snippets.

@KentaKomai
Created November 12, 2015 13:21
Show Gist options
  • Save KentaKomai/d550cdb281b017b7a377 to your computer and use it in GitHub Desktop.
Save KentaKomai/d550cdb281b017b7a377 to your computer and use it in GitHub Desktop.
dataに受け取ったものをjsonに出すだけのcomponent。
var Dump = React.createClass({
render: function() {
return (
<pre>{JSON.stringify(this.props.data, 0, 2)}</pre>
)
}
});
export default StateDump;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment