import { Meta, Story } from "@storybook/react"; import { Cartesian3, Color, Transforms } from "cesium"; import { events } from "../core/storybook"; import LabelCollection from "../LabelCollection"; import Viewer from "../Viewer"; import Label, { LabelProps } from "./Label"; const center = Cartesian3.fromDegrees(-75.59777, 40.03883); export default { title: "Label", component: Label, } as Meta; export const Basic: Story = args => ( ); export const Events: Story = args => ( );