diff --git a/code/addons/a11y/template/stories/A11YPanel.stories.tsx b/code/addons/a11y/template/stories/A11YPanel.stories.tsx new file mode 100644 index 00000000000..43b163e7f0f --- /dev/null +++ b/code/addons/a11y/template/stories/A11YPanel.stories.tsx @@ -0,0 +1,182 @@ +import React from 'react'; + +import { ThemeProvider, convert, themes } from 'storybook/internal/theming'; + +import type { Meta, StoryObj } from '@storybook/react'; +import { fn } from '@storybook/test'; + +import { A11YPanel } from '../../src/components/A11YPanel'; +import { A11yContext } from '../../src/components/A11yContext'; +import type { A11yContextStore } from '../../src/components/A11yContext'; + +const meta: Meta = { + title: 'A11YPanel', + component: A11YPanel, + decorators: [ + (Story) => ( + + + + ), + ], +} satisfies Meta; + +export default meta; + +type Story = StoryObj; + +const Template = (args: Pick) => ( + + + +); + +export const Initializing: Story = { + render: () => { + return ( +