Skip to content

Commit

Permalink
FIX incorrect package names in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Nov 11, 2017
1 parent 986e552 commit 607f37d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/a11y/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This storybook addon can be helpfull to make your UI components more accessibile
First, install the addon.

```sh
$ npm install -D storybook-addon-a11y
$ npm install -D @storybook/addon-a11y
```

Add this line to your `addons.js` file (create this file inside your storybook config directory if needed).
Expand All @@ -24,7 +24,7 @@ import the `'checkA11y'` decorator to check your stories for violations within y
import React from 'react';
import { storiesOf } from '@storybook/react';

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

storiesOf('button', module)
.addDecorator(checkA11y)
Expand Down

0 comments on commit 607f37d

Please sign in to comment.