mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
a8ec9ada2a
* add creation-successful onboarding view
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>
|
|
);
|
|
};
|