import { Meta, StoryObj } from "@storybook/react"; import { Cartesian3 } from "cesium"; import { events } from "../core/storybook"; import Entity from "../Entity"; import Viewer from "./Viewer"; type Story = StoryObj; export default { title: "Viewer", component: Viewer, } as Meta; export const Basic: Story = { render: args => , }; export const Events: Story = { render: args => ( ), };