How to use storybook-addon-designs - 2 common examples

To help you get started, we’ve selected a few storybook-addon-designs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github pocka / storybook-addon-designs / packages / examples / .storybook / config.js View on Github external
import { addParameters, configure } from '@storybook/react'
import { create } from '@storybook/theming'

import logo from '@storybook-addon-designs/assets/logo-with-text.png'

import pkg from 'storybook-addon-designs/package.json'

addParameters({
  options: {
    theme: create({
      brandTitle: 'storybook-addon-designs',
      brandImage: logo,
      brandUrl: pkg.homepage
    })
  }
})

// automatically import all files ending in *.stories.js
const req = require.context('../stories', true, /.stories.js$/)
function loadStories() {
  req.keys().forEach(filename => req(filename))
}

configure(loadStories, module)
github pocka / storybook-addon-designs / packages / examples / stories / index.stories.js View on Github external
.addDecorator(withDesign)
  .add('Embed multiple designs', () =&gt; <button>Button</button>, {
    design: config([
      {
        type: 'figma',
        url:
          'https://www.figma.com/file/Klm6pxIZSaJFiOMX5FpTul9F/storybook-addon-designs-sample'
      },
      {
        type: 'pdf',
        url: samplePdf
      }
    ])
  })
  .add('Set tab names', () =&gt; <button>Button</button>, {
    design: config([
      {
        name: 'Foo',
        type: 'figma',
        url:
          'https://www.figma.com/file/Klm6pxIZSaJFiOMX5FpTul9F/storybook-addon-designs-sample'
      },
      {
        name: 'Bar',
        type: 'pdf',
        url: samplePdf
      }
    ])
  })

storiesOf('Tests|Placeholder', module)
  .addDecorator(withDesign)

storybook-addon-designs

Storybook addon for embedding your design preview in addon panel

MIT
Latest version published 2 years ago

Package Health Score

68 / 100
Full package analysis