mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:31:09 +08:00
Fix misc warnings
This commit is contained in:
parent
dd7ca0e01b
commit
a1bb109e3e
@ -104,7 +104,8 @@ export const ArgsDisplay = (args = {}) => (
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{({ background, children }) => {
|
{({ background, children }) => {
|
||||||
const contents = children && children.length > 0 ? children : <DocgenButton label="child" />;
|
const contents =
|
||||||
|
children && children.length > 0 ? children : [<DocgenButton key="child" label="child" />];
|
||||||
return <ButtonGroup background={background}>{contents}</ButtonGroup>;
|
return <ButtonGroup background={background}>{contents}</ButtonGroup>;
|
||||||
}}
|
}}
|
||||||
</Story>
|
</Story>
|
||||||
@ -134,7 +135,7 @@ export const ArgsDisplay = (args = {}) => (
|
|||||||
return (
|
return (
|
||||||
<ButtonGroup background={background}>
|
<ButtonGroup background={background}>
|
||||||
{range(count).map((i) => (
|
{range(count).map((i) => (
|
||||||
<DocgenButton label={`${label} ${i}`} />
|
<DocgenButton key={i} label={`${label} ${i}`} />
|
||||||
))}
|
))}
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user