You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
828 B
29 lines
828 B
import React, { useState } from 'react'
|
|
import { action } from '@storybook/addon-actions'
|
|
import { object } from '@storybook/addon-knobs/react'
|
|
import Button from '../../../components/ui/button'
|
|
import mockQuoteData from './mock-quote-data'
|
|
import SelectQuotePopover from '.'
|
|
|
|
export default {
|
|
title: 'SelectQuotePopover',
|
|
}
|
|
|
|
export const Default = () => {
|
|
const [showPopover, setShowPopover] = useState(false)
|
|
|
|
return (
|
|
<div>
|
|
<Button onClick={() => setShowPopover(true)}>Open Popover</Button>
|
|
{showPopover && (
|
|
<SelectQuotePopover
|
|
quoteDataRows={object('quoteDataRows', mockQuoteData)}
|
|
onClose={() => setShowPopover(false)}
|
|
onSubmit={action('submit SelectQuotePopover')}
|
|
swapToSymbol="DAI"
|
|
initialAggId="Agg4"
|
|
/>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|