mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:31:06 +08:00
ADD new story-level decorators to angular di stories
This commit is contained in:
parent
dc401dd810
commit
4753e202d3
@ -9,10 +9,15 @@ storiesOf('Custom|Dependencies', module)
|
||||
title: 'Component dependencies',
|
||||
},
|
||||
}))
|
||||
.addDecorator(withKnobs)
|
||||
.add('inputs and inject dependencies with knobs', () => ({
|
||||
component: DiComponent,
|
||||
props: {
|
||||
title: text('title', 'Component dependencies'),
|
||||
},
|
||||
}));
|
||||
.add(
|
||||
'inputs and inject dependencies with knobs',
|
||||
() => ({
|
||||
component: DiComponent,
|
||||
props: {
|
||||
title: text('title', 'Component dependencies'),
|
||||
},
|
||||
}),
|
||||
{
|
||||
decorators: [withKnobs],
|
||||
}
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user