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