mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
a10fb75f35
Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
20 lines
395 B
JavaScript
20 lines
395 B
JavaScript
import React from 'react';
|
|
import { SnapUIMarkdown } from './snap-ui-markdown';
|
|
|
|
export default {
|
|
title: 'Components/App/Snaps/SnapUIMarkdown',
|
|
component: SnapUIMarkdown,
|
|
argTypes: {
|
|
children: {
|
|
control: 'text',
|
|
},
|
|
},
|
|
args: {
|
|
children: 'A Test String',
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <SnapUIMarkdown {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|