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