mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
|
import React from 'react';
|
||
|
import { ImportAccount } from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/Multichain/ImportAccount',
|
||
|
component: ImportAccount,
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <ImportAccount {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|