Socket
Socket
Sign inDemoInstall

@kadira/storybook-addon-links

Package Overview
Dependencies
Maintainers
6
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kadira/storybook-addon-links

Story Links addon for storybook


Version published
Maintainers
6
Created
Source

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

Keywords

FAQs

Package last updated on 09 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc