1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 22:24:27 +01:00
metamask-extension/ui/pages/onboarding-flow/secure-your-wallet/secure-your-wallet.stories.js

16 lines
291 B
JavaScript
Raw Normal View History

import React from 'react';
import SecureYourWallet from './secure-your-wallet';
export default {
title: 'Onboarding - Secure Your Wallet',
id: __filename,
};
export const Base = () => {
return (
<div style={{ maxHeight: '2000px' }}>
<SecureYourWallet />
</div>
);
};