1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-29 15:50:28 +01:00
metamask-extension/ui/components/app/modals/eth-sign-modal/eth-sign-modal.stories.js
Nidhi Kumari cfc653ada6
eth_sign toggle Update in advanced settings (#18848)
* 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
2023-05-04 16:44:07 +05:30

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} />;