Skip to content

Instantly share code, notes, and snippets.

@geelen
Created October 23, 2016 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geelen/08b9f2da1d90929d1d42632a261a08da to your computer and use it in GitHub Desktop.
Save geelen/08b9f2da1d90929d1d42632a261a08da to your computer and use it in GitHub Desktop.
import React from 'react'
import styled from 'styled-components'
const Pre = styled.pre`
background-color: papayawhip;
color: palevioletred;
padding: .5rem;
font-family: monospace;
`
const Debug = props => (
<Pre>{JSON.stringify(props, null, 2)}</Pre>
)
export default Debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment