Socket
Socket
Sign inDemoInstall

@storybook/router

Package Overview
Dependencies
3
Maintainers
11
Versions
1600
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@storybook/router


Version published
Maintainers
11
Install size
739 kB
Created

Package description

What is @storybook/router?

@storybook/router is a package used within the Storybook ecosystem to handle routing. It provides utilities to manage navigation and URL state within Storybook, making it easier to create and manage complex story hierarchies and navigation patterns.

What are @storybook/router's main functionalities?

Route Handling

The Route component allows you to define a route and associate it with a specific component. This is useful for rendering different components based on the URL path.

import { Route } from '@storybook/router';

<Route path="/my-component" component={MyComponent} />;

Link Component

The Link component is used to create navigational links within Storybook. It helps in navigating to different routes defined in the Storybook environment.

import { Link } from '@storybook/router';

<Link to="/my-component">Go to My Component</Link>;

Location Context

The Location component provides access to the current location object, which includes information like the current pathname. This is useful for conditionally rendering content based on the current route.

import { Location } from '@storybook/router';

<Location>{({ pathname }) => <div>Current path: {pathname}</div>}</Location>;

Other packages similar to @storybook/router

Readme

Source

Storybook Router

Storybook Router is a wrapper library for react-router. It ensures a single version of the router is used everywhere. It also includes some ready to use utils to read the path, query, viewMode and storyId from location.

Keywords

FAQs

Last updated on 24 May 2024

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc