import hbs from 'htmlbars-inline-precompile'; import { checkA11y } from '@storybook/addon-a11y'; export default { title: 'Addon|a11y', decorators: [checkA11y], parameters: { options: { selectedPanel: '@storybook/a11y/panel' }, }, }; export const Default = () => hbs``; export const Label = () => hbs``; export const Disabled = () => hbs``; export const invalidContrast = () => hbs``; invalidContrast.story = { name: 'Invalid contrast', };