Fix misc warnings

This commit is contained in:
Michael Shilman 2020-06-07 09:54:42 +08:00
parent dd7ca0e01b
commit a1bb109e3e

View File

@ -104,7 +104,8 @@ export const ArgsDisplay = (args = {}) => (
}}
>
{({ 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>;
}}
</Story>
@ -134,7 +135,7 @@ export const ArgsDisplay = (args = {}) => (
return (
<ButtonGroup background={background}>
{range(count).map((i) => (
<DocgenButton label={`${label} ${i}`} />
<DocgenButton key={i} label={`${label} ${i}`} />
))}
</ButtonGroup>
);