import { Meta, StoryObj } from "@storybook/react"; import { Cartesian3, Color } from "cesium"; import VrtViewer from "../__vrt__/VrtViewer"; import PointGraphics from "../PointGraphics"; import Entity from "./Entity"; /** * Stories tagged `vrt` are rendered deterministically (see `src/__vrt__`) so the * test runner can compare screenshots. Run `npm run storybook:build:vrt` then `npm run vrt`. */ const meta: Meta = { title: "VRT/Entity", tags: ["vrt"], parameters: { layout: "fullscreen" }, }; export default meta; type Story = StoryObj; export const Entities: Story = { render: () => ( ), };