mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
be0508d41e
* send-hex-data * id filename * lint
20 lines
429 B
JavaScript
20 lines
429 B
JavaScript
import React from 'react';
|
|
import { boolean } from '@storybook/addon-knobs';
|
|
import SendHexDataRow from './send-hex-data-row.component';
|
|
|
|
export default {
|
|
title: 'SendHexDataRow',
|
|
id: __filename,
|
|
};
|
|
|
|
export const SendHexDataRowComponent = () => {
|
|
return (
|
|
<div style={{ width: 450 }}>
|
|
<SendHexDataRow
|
|
inError={boolean('In Error', false)}
|
|
updateSendHexData={() => null}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|