mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
16 lines
319 B
JavaScript
16 lines
319 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>
|
|
)
|