mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:21:24 +08:00
Official-storybook: Fix misc browser warnings
This commit is contained in:
parent
b407d06d28
commit
d116ecb092
@ -13,12 +13,14 @@ import { MemoButton } from '../../components/MemoButton';
|
|||||||
|
|
||||||
export const ArgsDisplay = (args = {}) => (
|
export const ArgsDisplay = (args = {}) => (
|
||||||
<table>
|
<table>
|
||||||
|
<tbody>
|
||||||
{Object.entries(args).map(([key, val]) => (
|
{Object.entries(args).map(([key, val]) => (
|
||||||
<tr>
|
<tr key={key}>
|
||||||
<td>{key}</td>
|
<td>{key}</td>
|
||||||
<td>{val && val.toString()}</td>
|
<td>{val && val.toString()}</td>
|
||||||
</tr>
|
</tr>
|
||||||
))}
|
))}
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user