JSPM

@sambego/storybook-styles

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5086
  • Score
    100M100P100Q132224F
  • License MIT

Add default styles to the storybook preview panel

Package Exports

  • @sambego/storybook-styles

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@sambego/storybook-styles) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Storybook styles

Getting Started

npm install --save @sambego/storybook-styles

Then write your stories like this:

import React from 'react';
import { storiesOf } from "@storybook/react";
import styles from "@sambego/storybook-styles";

storiesOf("Button", module)
  .addDecorator(styles({
    background: 'tomato',
    fontFamily: 'Helvetica, Arial, sans-serif'
  }))
  .add("with text", () => <button>Click me</button>);