1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Add confirm-send-token component to Storybook (#11399)

* fix image path for storybook

* confirm-send-token-component

* lintfix
This commit is contained in:
Etienne Dusseault 2021-08-30 17:55:08 -05:00 committed by GitHub
parent cd3447995b
commit 2996163770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
import React from 'react';
import ConfirmSendToken from './confirm-send-token.component';
export default {
title: 'Confirmation Screens',
};
const PageSet = ({ children }) => {
return children;
};
export const SendToken = () => {
return (
<PageSet>
<ConfirmSendToken />
</PageSet>
);
};