1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
George Marshall 656fd276c0
Dark mode: Updating error color and adding story (#14116)
* Updating error color and adding story

* Fixing class

* Updates

* removing console log
2022-03-23 09:29:22 -07:00

23 lines
381 B
JavaScript

import React from 'react';
import QrCodeView from '.';
export default {
title: 'Components/UI/QrCodeView',
id: __filename,
argTypes: {
Qr: {
control: 'object',
},
},
args: {
Qr: {
message: <div>message</div>,
data: 'data',
},
},
};
export const DefaultStory = (args) => <QrCodeView {...args} />;
DefaultStory.storyName = 'Default';