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