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