mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 16:18:07 +01:00
614228cba7
* secure-your-wallet onboarding view
16 lines
291 B
JavaScript
16 lines
291 B
JavaScript
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>
|
|
);
|
|
};
|