You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
462 B
23 lines
462 B
3 years ago
|
import React from 'react';
|
||
|
import RevealSeedPage from './reveal-seed';
|
||
|
|
||
|
export default {
|
||
|
title: 'Pages/Keychains/RevealSeedPage',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
requestRevealSeedWords: {
|
||
|
action: 'requestRevealSeedWords',
|
||
|
},
|
||
|
history: {
|
||
|
control: 'object',
|
||
|
},
|
||
|
mostRecentOverviewPage: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <RevealSeedPage {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|