mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:01:23 +08:00
20 lines
542 B
TypeScript
20 lines
542 B
TypeScript
import { storiesOf } from '@storybook/angular';
|
|
import { withKnobs, text } from '@storybook/addon-knobs/angular';
|
|
import { DiComponent } from './di.component';
|
|
|
|
storiesOf('Component dependencies', module)
|
|
.add('inputs and inject dependencies', () => ({
|
|
component: DiComponent,
|
|
props: {
|
|
title: 'Component dependencies'
|
|
}
|
|
}))
|
|
.addDecorator(withKnobs)
|
|
.add('inputs and inject dependencies with knobs', () => ({
|
|
component: DiComponent,
|
|
props: {
|
|
title: text('title', 'Component dependencies')
|
|
}
|
|
}));
|
|
|