import globalThis from 'global'; import { withLinks } from '@storybook/addon-links'; export default { component: globalThis.Components.Html, parameters: { chromatic: { disable: true }, }, decorators: [withLinks], }; export const Basic = { args: { content: `
go to basic
`, }, }; export const Other = { args: { content: `
to to basic
`, }, }; export const Third = { args: { content: `
go to other
`, }, };