Add a reproducing story for #15400

This commit is contained in:
Tom Coleman 2021-06-29 15:36:06 +10:00
parent c6d7323fe0
commit 8e373abf90

View File

@ -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" />
</>
),
];