import React from 'react'; import PropTypes from 'prop-types'; export const Pre = ({ style, object, text }) => (
    {object ? JSON.stringify(object, null, 2) : text}
  
); Pre.propTypes = { style: PropTypes.shape({}), object: PropTypes.shape({}), text: PropTypes.string, }; Pre.defaultProps = { style: {}, object: null, text: '', };