mirror of
https://github.com/c8r/x0.git
synced 2024-11-09 21:15:22 +03:00
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
|
import React from 'react'
|
||
|
|
||
|
const Debugger = props => <pre children={JSON.stringify(props, null, 2)} />
|
||
|
|
||
|
export default Debugger
|