2022-09-12 13:09:00 +08:00

14 lines
338 B
JavaScript

import { html } from 'lit-html';
import { styleMap } from 'lit-html/directives/style-map';
/**
* Helper component for rendering text or data
*/
export const Pre = ({ style, object, text }) =>
html`
<pre data-testid="pre" style=${styleMap({ style })}>
${object ? JSON.stringify(object, null, 2) : text}
</pre
>
`;