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