mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 14:44:27 +01:00
16 lines
297 B
JavaScript
16 lines
297 B
JavaScript
|
import React from 'react';
|
||
|
import CreationSuccessful from './creation-successful';
|
||
|
|
||
|
export default {
|
||
|
title: 'Onboarding - Creation Successful',
|
||
|
id: __filename,
|
||
|
};
|
||
|
|
||
|
export const Base = () => {
|
||
|
return (
|
||
|
<div style={{ maxHeight: '2000px' }}>
|
||
|
<CreationSuccessful />
|
||
|
</div>
|
||
|
);
|
||
|
};
|