Fix button knob story (#8282)

Fix button knob story
This commit is contained in:
Norbert de Langen 2019-10-03 15:38:39 +02:00 committed by GitHub
commit e4a0e25eca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -318,10 +318,16 @@ export const triggersActionsViaButton = () => {
injectedItems = [];
}
});
// Needed to enforce @babel/transform-react-constant-elements deoptimization
// See https://github.com/babel/babel/issues/10522
const loaderProps = {
isLoading: injectedIsLoading,
items: injectedItems,
};
return (
<Fragment>
<p>Hit the knob button and it will toggle the items list into multiple states.</p>
<ItemLoader isLoading={injectedIsLoading} items={injectedItems} />
<ItemLoader {...loaderProps} />
</Fragment>
);
};