mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
cfc653ada6
* added eth sign first step * added modal * added validation for form * updated width with block * added state trigger for toggle * updated Eth sign modal text changes * added eth sign toggle tex * removed unnecessary code * fixed form validation text * updated eth toggle text * added test * added analytics * updated design changes * lint fix * updated error text * updated changes
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
import React from 'react';
|
|
import EthSignModal from './eth-sign-modal';
|
|
|
|
export default {
|
|
title: 'Components/App/Modals/EthSignModal',
|
|
component: EthSignModal,
|
|
};
|
|
|
|
export const DefaultStory = (args) => <EthSignModal {...args} />;
|