Add send-hex-data-row to Storybook (#12085)
* send-hex-data * id filename * lintfeature/default_network_editable
parent
1e5c0078dd
commit
be0508d41e
@ -0,0 +1,19 @@ |
||||
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> |
||||
); |
||||
}; |
Loading…
Reference in new issue