mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
23 lines
407 B
JavaScript
23 lines
407 B
JavaScript
import React from 'react';
|
|
|
|
import InfoBox from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/InfoBox',
|
|
id: __filename,
|
|
component: InfoBox,
|
|
argTypes: {
|
|
title: 'string',
|
|
description: 'string',
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <InfoBox {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
title: 'Hello Ether',
|
|
description: 'This is the description',
|
|
};
|