mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
694773f17a
Co-authored-by: georgewrmarshall <george.marshall@consensys.net> Co-authored-by: NidhiKJha <nidhi.kumari@consensys.net> Co-authored-by: montelaidev <monte.lai@consensys.net>
19 lines
389 B
JavaScript
19 lines
389 B
JavaScript
import React from 'react';
|
|
import BottomButtons from './bottom-buttons';
|
|
|
|
export default {
|
|
title: 'Pages/CreateAccount/ImportAccount/BottomButtons',
|
|
component: BottomButtons,
|
|
argTypes: {
|
|
isPrimaryDisabled: {
|
|
control: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <BottomButtons {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|