Official-storybook: Fix misc browser warnings

This commit is contained in:
Michael Shilman 2020-06-04 10:59:15 +08:00
parent b407d06d28
commit d116ecb092

View File

@ -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>
); );