mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
19 lines
415 B
JavaScript
19 lines
415 B
JavaScript
|
import React from 'react';
|
||
|
import PrivateKeyImportView from './private-key';
|
||
|
|
||
|
export default {
|
||
|
title: 'Pages/CreateAccount/ImportAccount/PrivateKeyImportView',
|
||
|
component: PrivateKeyImportView,
|
||
|
argTypes: {
|
||
|
importAccountFunc: {
|
||
|
control: {
|
||
|
type: 'function',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <PrivateKeyImportView {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|