import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types'; const html = `
This is text! This is bold, italics.
`; const whiteSpacePreConfig: UIRenderHtmlCardProps = { title: 'Whitespace Collapsing Disabled', caption: 'Notice that the four line breaks and the second space after the coma have been preserved.', props: { source: { html } }, preferHtmlSrc: true }; export default whiteSpacePreConfig;