import { Meta, StoryObj } from "@storybook/react"; import { JulianDate, ClockRange, ClockStep } from "cesium"; import Globe from "../Globe"; import Viewer from "../Viewer"; import Clock from "./Clock"; type Story = StoryObj; export default { title: "Clock", component: Clock, } as Meta; export const Basic: Story = { render: () => ( ), };