mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
import React from 'react';
|
|
import EditGasDisplayEducation from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/EditGasDisplayEducation',
|
|
id: __filename,
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasDisplayEducation />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|