import { document, setTimeout } from 'global';
const text = 'Testing the a11y addon';
export default {
title: 'Addons/a11y',
parameters: {
options: { selectedPanel: 'storybook/a11y/panel' },
},
};
export const Default = () => ``;
export const Label = () => ``;
export const Disabled = () => ``;
export const Story4 = () =>
``;
Story4.storyName = 'Invalid contrast';
export const Story5 = () => {
const div = document.createElement('div');
setTimeout(() => {
div.innerHTML = ``;
}, 1000);
return div;
};
Story5.storyName = 'Delayed render';