Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@kadira/storybook-addon-links

kadirahq17.2kMIT1.0.1

Story Links addon for storybook

storybook

readme

Story Links Addon

The Story Links addon can be used to create links between stories. This addon works with both React Storybook and React Native Storybook (included by default).

Getting Started

First, install the addon

npm install -D @kadira/storybook-addon-links

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

import '@kadira/storybook-addon-links/register';

Import the linkTo function and use it to create links. When creating links, provide the target story info.

import { storiesOf } from '@kadira/storybook'
import { linkTo } from '@kadira/storybook-addon-links'

storiesOf('Button', module)
  .add('First', () => (
    <button onClick={linkTo('Button', 'Second')}>Go to "Second"</button>
  ))
  .add('Second', () => (
    <button onClick={linkTo('Button', 'First')}>Go to "First"</button>
  ));

changelog

Changelog

v1.0.1

  • Refactor source code
  • Update the README file

v1.0.0

  • First stable release with all features from the storybook linkTo function