import React from 'react'; import { DISPLAY } from '../../../../helpers/constants/design-system'; import Box from '../../../ui/box'; import DetectedTokenAggregators from './detected-token-aggregators'; export default { title: 'Components/App/DetectedToken/DetectedTokenAggregators', id: __filename, argTypes: { aggregators: { control: 'array' }, }, args: { aggregators1: [ 'Aave', 'Bancor', 'CMC', 'Crypto.com', 'CoinGecko', '1inch', 'Paraswap', 'PMM', 'Synthetix', 'Zapper', 'Zerion', '0x', ], aggregators2: ['Aave', 'Bancor'], }, }; const Template = (args) => { return ( ); }; export const DefaultStory = Template.bind({}); DefaultStory.storyName = 'Default';