mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
22 lines
476 B
JavaScript
22 lines
476 B
JavaScript
/* eslint-disable react/react-in-jsx-scope */
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import PropTypes from 'prop-types';
|
|
|
|
export const Pre = ({ style, object, text }) => (
|
|
<pre style={style} data-testid="pre">
|
|
{object ? JSON.stringify(object, null, 2) : text}
|
|
</pre>
|
|
);
|
|
|
|
Pre.propTypes = {
|
|
style: PropTypes.shape({}),
|
|
object: PropTypes.shape({}),
|
|
text: PropTypes.string,
|
|
};
|
|
|
|
Pre.defaultProps = {
|
|
style: {},
|
|
object: null,
|
|
text: '',
|
|
};
|