mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
2996163770
* fix image path for storybook * confirm-send-token-component * lintfix
19 lines
312 B
JavaScript
19 lines
312 B
JavaScript
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>
|
|
);
|
|
};
|