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.
44 lines
977 B
44 lines
977 B
3 years ago
|
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: {
|
||
|
aggregatorsList: { control: 'array' },
|
||
|
},
|
||
|
args: {
|
||
|
aggregatorsList1: [
|
||
|
'Aave',
|
||
|
'Bancor',
|
||
|
'CMC',
|
||
|
'Crypto.com',
|
||
|
'CoinGecko',
|
||
|
'1inch',
|
||
|
'Paraswap',
|
||
|
'PMM',
|
||
|
'Synthetix',
|
||
|
'Zapper',
|
||
|
'Zerion',
|
||
|
'0x',
|
||
|
],
|
||
|
aggregatorsList2: ['Aave', 'Bancor'],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const Template = (args) => {
|
||
|
return (
|
||
|
<Box display={DISPLAY.GRID}>
|
||
|
<DetectedTokenAggregators aggregatorsList={args.aggregatorsList1} />
|
||
|
<DetectedTokenAggregators aggregatorsList={args.aggregatorsList2} />
|
||
|
</Box>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = Template.bind({});
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|