@gitlab/ui
Version:
GitLab UI Components
18 lines (15 loc) • 416 B
JavaScript
import { withKnobs } from '@storybook/addon-knobs/vue';
import { documentedStoriesOf } from '../../../../documentation/documented_stories';
import readme from './form.md';
import { GlForm } from '../../../../index';
const components = {
GlForm,
};
documentedStoriesOf('base|form/form', readme)
.addDecorator(withKnobs)
.add('default', () => ({
components,
template: `
<gl-form />
`,
}));