UNPKG

@gitlab/ui

Version:
18 lines (15 loc) 547 B
import { withKnobs } from '@storybook/addon-knobs'; import { documentedStoriesOf } from '../../../../documentation/documented_stories'; import readme from './new_dropdown_item.md'; import { GlNewDropdownItem } from '../../../../index'; const components = { GlNewDropdownItem, }; documentedStoriesOf('base|new_dropdown/dropdown-item', readme) .addDecorator(withKnobs) .add('default', () => ({ props: {}, components, template: '<ul class="list-unstyled"><gl-new-dropdown-item>Some item</gl-new-dropdown-item></ul>', }));