Jaco Bovenschen 0266c97dc5 Create more example stories (#1)
* Add Button example

* Add semicolon behind import

* Add Image example

* Add Form examples

* Add Typography examples
2017-11-11 22:00:21 +01:00
..
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00
2017-11-11 22:00:21 +01:00

storybook-addon-a11y

This storybook addon can be helpfull to make you're 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 you're stories for violations within your components.

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

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>
  ));