import { Meta, StoryObj } from "@storybook/react"; import { Cartesian3, Color, EntityCluster } from "cesium"; import { events } from "../core/storybook"; import Entity from "../Entity"; import Viewer from "../Viewer"; import CustomDataSource from "./CustomDataSource"; type Story = StoryObj; export default { title: "CustomDataSource", component: CustomDataSource, } as Meta; export const Basic: Story = { render: args => ( ), }; export const UseEntityCluster: Story = { storyName: "Entity cluster", render: args => ( {new Array(100).fill(0).map((_, i) => ( ))} ), };