mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
16 lines
323 B
JavaScript
16 lines
323 B
JavaScript
/* eslint-disable no-undef */
|
|
export const Pre = (args) => {
|
|
const pre = document.createElement('pre');
|
|
|
|
pre.setAttribute('data-testid', 'pre');
|
|
pre.style = args.style;
|
|
|
|
if (args.object) {
|
|
pre.textContent = JSON.stringify(args.object, null, 2);
|
|
} else {
|
|
pre.textContent = args.text;
|
|
}
|
|
|
|
return pre;
|
|
};
|