mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
|
import React from 'react';
|
||
|
import JsonImportSubview from './json';
|
||
|
|
||
|
export default {
|
||
|
title: 'Pages/CreateAccount/ImportAccount/JsonImportSubview',
|
||
|
component: JsonImportSubview,
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = () => <JsonImportSubview />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|