UNPKG

react-typescript-datamaps

Version:

react wrapper component for the 'datamaps' library (Interactive maps for data visualizations). Out of the box it includes advance arc-attack-plugin and demo mode.

14 lines (13 loc) 264 B
import React from 'react'; interface Props { addItems: Item[]; } interface Item { id: string; origin: string; destination: string; type?: string; color?: string; } export declare const AttackTicker: React.FC<Props>; export {};