mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Add a reproducing story for #15400
This commit is contained in:
parent
c6d7323fe0
commit
8e373abf90
@ -35,3 +35,23 @@ All.decorators = [
|
||||
</>
|
||||
),
|
||||
];
|
||||
|
||||
export const PropOverride = (args, { prop1, prop2 }) => (
|
||||
<p>
|
||||
Story prop: <pre>{JSON.stringify({ prop1, prop2 })}</pre>
|
||||
</p>
|
||||
);
|
||||
PropOverride.decorators = [
|
||||
(Story) => (
|
||||
<>
|
||||
<p>First local Decorator</p>
|
||||
<Story prop1="prop1" />
|
||||
</>
|
||||
),
|
||||
(Story) => (
|
||||
<>
|
||||
<p>Second Local Decorator</p>
|
||||
<Story prop2="prop2" />
|
||||
</>
|
||||
),
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user