import type { Meta, StoryObj } from '@storybook/react-vite'; import { expect } from 'storybook/test'; import { HTMLBlock } from './index'; const meta = { title: 'Components/HTMLBlock', component: HTMLBlock, args: { contents: '
Hello, world!
\n\nThis should be filtered out:
', }, render(args) { return ( // Just for visual clarity in Storybook.