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: { htmlString: `
Hello, world!
This should be filtered out:
This also has emoji: 🖤
`, }, argTypes: { extraEmojis: { table: { disable: true, }, }, onElement: { table: { disable: true, }, }, onAttribute: { table: { disable: true, }, }, }, render(args) { return ( // Just for visual clarity in Storybook.