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