Skip to content
This repository has been archived by the owner on Dec 13, 2017. It is now read-only.

storybook-eol/storybook-addon-a11y

Repository files navigation

storybook-addon-a11y

This storybook addon can be helpfull to make your UI components more accessibile.

Getting started

First, install the addon.

$ npm install -D storybook-addon-a11y

Add this line to your addons.js file (create this file inside your storybook config directory if needed).

import 'storybook-addon-a11y/register';

import the 'checkA11y' decorator to check your stories for violations within your components.

import React from 'react';
import { storiesOf } from '@storybook/react';

import { checkA11y } from 'storybook-addon-a11y';

storiesOf('button', module)
  .addDecorator(checkA11y)
  .add('Accessible', () => (
    <button>
      Accessible button
    </button>
  ))
  .add('Inaccessible', () => (
    <button style={{ backgroundColor: 'red', color: 'darkRed', }}>
      Inaccessible button
    </button>
  ));

About

REPO/PACKAGE MOVED - Storybook addon to help, improving accessibility within you're react components.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published