mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
import React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import SlippageButtons from '.';
|
|
|
|
export default {
|
|
title: 'SlippageButtons',
|
|
};
|
|
|
|
export const Default = () => (
|
|
<div style={{ height: '200px', marginTop: '160px' }}>
|
|
<SlippageButtons onSelect={action('slippage')} />
|
|
</div>
|
|
);
|