mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
22 lines
372 B
JavaScript
22 lines
372 B
JavaScript
import React from 'react';
|
|
import ConfirmSendToken from './confirm-send-token.component';
|
|
|
|
export default {
|
|
title: 'Pages/ConfirmSendToken',
|
|
id: __filename,
|
|
};
|
|
|
|
const PageSet = ({ children }) => {
|
|
return children;
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
return (
|
|
<PageSet>
|
|
<ConfirmSendToken />
|
|
</PageSet>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|