mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-23 01:39:40 +01:00
29 lines
674 B
TypeScript
29 lines
674 B
TypeScript
import { FormInline, Select } from '@/components'
|
|
import type { Market } from '@/features/strategies'
|
|
import type { Dispatch, SetStateAction } from 'react'
|
|
|
|
const options = [
|
|
{ value: 'market', label: 'All Markets' },
|
|
{ value: 'migration', label: 'Migration Tool' },
|
|
{ value: 'uniswap-v3', label: 'Uniswap v3' }
|
|
]
|
|
|
|
export function FormMarket({
|
|
market,
|
|
setMarket
|
|
}: {
|
|
market: Market
|
|
setMarket: Dispatch<SetStateAction<Market>>
|
|
}) {
|
|
return (
|
|
<FormInline>
|
|
<Select
|
|
options={options}
|
|
value={market}
|
|
onChange={(e) => setMarket(e.target.value as Market)}
|
|
style={{ paddingRight: '1.2rem' }}
|
|
/>
|
|
</FormInline>
|
|
)
|
|
}
|