antv-l7/stories/Scale/Scale.stories.tsx

9 lines
299 B
TypeScript

import { storiesOf } from '@storybook/react';
import * as React from 'react';
import Quantize from './components/Quantize';
import PointScale from './components/Point';
storiesOf('数据映射', module)
.add('枚举类型', () => <PointScale />)
.add('颜色范围等分', () => <Quantize />);