import React from "react";
import { GlobeChart } from "../../components/Charts";
import { mapData, testData } from "./testData/GlobeChart";
export default {
  title: "Charts/Globe Chart",
  component: GlobeChart,
};

const Template = (args) => <GlobeChart {...args} />;

export const Default = Template.bind({});
Default.args = {
  data: testData,
  mapData: mapData,
  chartClass: "globeChart1",
};
