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 (
+
+ );
+ },
+};
+
+export const Manual: Story = {
+ render: () => {
+ return (
+
+ );
+ },
+};
+
+export const Running: Story = {
+ render: () => {
+ return (
+
+ );
+ },
+};
+
+export const ReadyWithResults: Story = {
+ render: () => {
+ return (
+ ',
+ target: ['.css-12jpz5t'],
+ failureSummary:
+ 'Fix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute',
+ },
+ ],
+ },
+ ],
+ }}
+ status="ready"
+ error={null}
+ />
+ );
+ },
+};
+
+export const Error: Story = {
+ render: () => {
+ return (
+
+ );
+ },
+};
+
+export const ErrorStateWithObject: Story = {
+ render: () => {
+ return (
+
+ );
+ },
+};