mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
18 lines
349 B
JavaScript
18 lines
349 B
JavaScript
import React from 'react';
|
|
import CreationSuccessful from './creation-successful';
|
|
|
|
export default {
|
|
title: 'Pages/OnboardingFlow/CreationSuccessful',
|
|
id: __filename,
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
return (
|
|
<div style={{ maxHeight: '2000px' }}>
|
|
<CreationSuccessful />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|