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 }) => { {({ 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>
); );