shilman / storybook-addon-designs

A Storybook addon that embeds Figma, websites, or images in the addon panel.

Home Page:https://pocka.github.io/storybook-addon-designs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

npm version Monthly download GitHub license code style: prettier


storybook-addon-designs

A Storybook addon that embed Figma or websites in the addon panel for better design-development workflow.

Requirements

  • Storybook@>=5.0.0

This addon should work well with any framework: If you find the case the addon not works, please open an issue.

Getting started

1. Install

npm install --save-dev storybook-addon-designs@beta
# yarn add -D storybook-addon-designs@beta

2. Register the addon in main.js

module.exports = {
  addons: ['storybook-addon-designs'],
}

3. Add it to story!

import { withDesign } from 'storybook-addon-designs'

export default {
  title: 'My stories',
  component: Button,
  decorators: [withDesign],
}

export const myStory = () => <Button>Hello, World!</Button>

myStory.parameters = {
  design: {
    type: 'figma',
    url: 'https://www.figma.com/file/LKQ4FJ4bTnCSjedbRpk931/Sample-File',
  },
}

Similar projects

About

A Storybook addon that embeds Figma, websites, or images in the addon panel.

https://pocka.github.io/storybook-addon-designs

License:MIT License


Languages

Language:TypeScript 68.7%Language:JavaScript 29.6%Language:CSS 1.7%Language:HTML 0.1%