import React from 'react'; import PropTypes from 'prop-types'; import { clsm } from '../utils'; import withPortal from './withPortal'; const Debug = ({ data }) => (
    {JSON.stringify(data, null, 2)}
  
); Debug.propTypes = { data: PropTypes.object.isRequired }; export default withPortal(Debug, 'debug');