2021-02-04 19:15:23 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import SlippageButtons from '.';
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export default {
|
2021-12-01 20:27:57 +01:00
|
|
|
title: 'Pages/Swaps/SlippageButtons',
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-12-01 20:27:57 +01:00
|
|
|
export const DefaultStory = () => (
|
2020-10-06 20:28:38 +02:00
|
|
|
<div style={{ height: '200px', marginTop: '160px' }}>
|
2020-11-03 00:41:28 +01:00
|
|
|
<SlippageButtons onSelect={action('slippage')} />
|
2020-10-06 20:28:38 +02:00
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2021-12-01 20:27:57 +01:00
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|