mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add add-recipient to Storybook (#12076)
This commit is contained in:
parent
3edd544274
commit
6b7444c257
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,37 @@
|
||||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
import { text } from '@storybook/addon-knobs';
|
||||
|
||||
import configureStore from '../../../../store/store';
|
||||
|
||||
import testData from '../../../../../.storybook/test-data';
|
||||
import AddRecipient from './add-recipient.component';
|
||||
|
||||
const store = configureStore(testData);
|
||||
|
||||
export default {
|
||||
title: 'AddRecipient',
|
||||
id: __filename,
|
||||
decorators: [(story) => <Provider store={store}>{story()}</Provider>],
|
||||
};
|
||||
|
||||
export const AddRecipientComponent = () => {
|
||||
const { metamask } = store.getState();
|
||||
const { addressBook, recipient } = metamask;
|
||||
return (
|
||||
<div style={{ width: 300 }}>
|
||||
<AddRecipient
|
||||
contacts={[addressBook]}
|
||||
recipient={recipient}
|
||||
updateRecipient={() => undefined}
|
||||
nonContacts={[addressBook]}
|
||||
ownedAccounts={[addressBook]}
|
||||
addressBook={[addressBook]}
|
||||
updateGas={() => undefined}
|
||||
// ToError and ToWarning wording must match on translation
|
||||
ensError={text('To Error', 'loading')}
|
||||
ensWarning={text('To Warning', 'loading')}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue
Block a user