mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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 = {}) => (
|
||||
<table>
|
||||
{Object.entries(args).map(([key, val]) => (
|
||||
<tr>
|
||||
<td>{key}</td>
|
||||
<td>{val && val.toString()}</td>
|
||||
</tr>
|
||||
))}
|
||||
<tbody>
|
||||
{Object.entries(args).map(([key, val]) => (
|
||||
<tr key={key}>
|
||||
<td>{key}</td>
|
||||
<td>{val && val.toString()}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user