mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
4f39486eb7
* Migrating dimensions, latest SVG, stubbing sidebar * Revert "Migrating dimensions, latest SVG, stubbing sidebar" This reverts commit5014a68f52
. * Revert "Revert "Migrating dimensions, latest SVG, stubbing sidebar"" This reverts commit28c130c8d8
. * Post merge bootstrap & build * Linting * Updating Story Heirarchy * Migrating legacy tooltip component * Reverting spacing integration into core dimensions * Cleaning up comments, tweaking CSS var usage * Removing static height * Cleaning up static CSS values, re-organizing sliding panel, fixing search icon * adding flow def for autobind in new SB instance * PR feedback, removing new vars/updating markup * Fixing lint > flow error on type
21 lines
489 B
JavaScript
21 lines
489 B
JavaScript
import React from 'react';
|
|
import Sidebar from './sidebar';
|
|
import { withKnobs } from '@storybook/addon-knobs';
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
export default {
|
|
title: '1st Party | Sidebar',
|
|
decorators: [withKnobs, withDesign],
|
|
};
|
|
|
|
export const _default = () => <Sidebar />;
|
|
|
|
_default.story = {
|
|
parameters: {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/sS7oBbKmDvhtq5lXyTckVe/Style-Guide-Components?node-id=0%3A2',
|
|
},
|
|
},
|
|
};
|