import type { Meta, StoryObj } from '@storybook/react' import { PseudoHtmlDiff } from './component-stack-pseudo-html' import { withShadowPortal } from '../../storybook/with-shadow-portal' const meta: Meta = { component: PseudoHtmlDiff, parameters: { layout: 'fullscreen', }, decorators: [withShadowPortal], } export default meta type Story = StoryObj export const TextMismatch: Story = { args: { reactOutputComponentDiff: `
- Server content + Client content`, }, } export const ReactUnifiedMismatch: Story = { args: { reactOutputComponentDiff: '\n \n
asd\n-

Server content

\n+

Client content

', }, }