UNPKG

@opendatasoft/visualizations-react

Version:

Opendatasoft's React wrapper for visualization components.

15 lines (14 loc) 564 B
import React from 'react'; import { Meta, StoryObj } from '@storybook/react'; import { ChoroplethGeoJsonOptions } from '@opendatasoft/visualizations'; import { ChoroplethSvg } from 'src'; declare const ChoroPlethWithSelect: ({ scale, dataset, height, width, options, }: { scale: string; dataset: number; height: string; width: string; options: ChoroplethGeoJsonOptions; }) => React.JSX.Element; declare const meta: Meta<typeof ChoroplethSvg>; export default meta; export declare const ChoroplethSvgStory: StoryObj<typeof ChoroPlethWithSelect>;